001: /*
002: * File: defaultActiveX.java
003: * Project: jMOS, com.aranova.java.jmos.messages.profile
004: * Revision: 0.9 - Inicial
005: * Date: 24-oct-2005 13:35:07
006: *
007: * Copyright (C) Aragón Innovación Tecnológica S.L.L.
008: * All rights reserved.
009: *
010: * This software is distributed under the terms of the Aranova License version 1.0.
011: * See the terms of the Aranova License in the documentation provided with this software.
012: */
013:
014: package com.aranova.java.jmos.messages.profile;
015:
016: import com.aranova.java.jmos.annotations.MOSAttribute;
017: import com.aranova.java.jmos.annotations.MOSMessage;
018: import com.aranova.java.jmos.messages.Message;
019:
020: /**
021: * Clase para representar la estructura defaultActiveX.
022: *
023: * @author <a href="http://www.aranova.net/contactar/">Daniel Sánchez</a>
024: * @version 0.9.1
025: * @since 0.9
026: */
027: @MOSMessage(name="defaultActiveX")
028: public class defaultActiveX extends Message {
029: @MOSAttribute(name="mode")
030: private String _mode;
031: @MOSAttribute(name="controlFileLocation")
032: private String _controlFileLocation;
033: @MOSAttribute(name="controlSlug")
034: private String _controlSlug;
035: @MOSAttribute(name="controlName")
036: private String _controlName;
037: @MOSAttribute(name="controlDefaultParams")
038: private String _controlDefaultParams;
039:
040: /**
041: * @return Returns the controlDefaultParams.
042: */
043: public String getControlDefaultParams() {
044: return _controlDefaultParams;
045: }
046:
047: /**
048: * @param controlDefaultParams The controlDefaultParams to set.
049: */
050: public void setControlDefaultParams(
051: final String controlDefaultParams) {
052: _controlDefaultParams = controlDefaultParams;
053: }
054:
055: /**
056: * @return Returns the controlFileLocation.
057: */
058: public String getControlFileLocation() {
059: return _controlFileLocation;
060: }
061:
062: /**
063: * @param controlFileLocation The controlFileLocation to set.
064: */
065: public void setControlFileLocation(final String controlFileLocation) {
066: _controlFileLocation = controlFileLocation;
067: }
068:
069: /**
070: * @return Returns the controlName.
071: */
072: public String getControlName() {
073: return _controlName;
074: }
075:
076: /**
077: * @param controlName The controlName to set.
078: */
079: public void setControlName(final String controlName) {
080: _controlName = controlName;
081: }
082:
083: /**
084: * @return Returns the controlSlug.
085: */
086: public String getControlSlug() {
087: return _controlSlug;
088: }
089:
090: /**
091: * @param controlSlug The controlSlug to set.
092: */
093: public void setControlSlug(final String controlSlug) {
094: _controlSlug = controlSlug;
095: }
096:
097: /**
098: * @return Returns the mode.
099: */
100: public String getMode() {
101: return _mode;
102: }
103:
104: /**
105: * @param mode The mode to set.
106: */
107: public void setMode(final String mode) {
108: _mode = mode;
109: }
110: }
|