// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2008.08.27 at 11:44:31 dop. CEST // package net.sf.istcontract.aws.observer.ontology; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** *
Java class for ActionPerformedSubscribe complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="ActionPerformedSubscribe">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="actionId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="anyAction" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ActionPerformedSubscribe", propOrder = {
"actionId",
"anyAction"
})
public class ActionPerformedSubscribe {
protected String actionId;
protected String anyAction;
/**
* Gets the value of the actionId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getActionId() {
return actionId;
}
/**
* Sets the value of the actionId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setActionId(String value) {
this.actionId = value;
}
/**
* Gets the value of the anyAction property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAnyAction() {
return anyAction;
}
/**
* Sets the value of the anyAction property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAnyAction(String value) {
this.anyAction = value;
}
}