de.drv.dsrv.extrastandard.namespace.messages.Property Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.02.27 at 11:29:43 PM CET
//
package de.drv.dsrv.extrastandard.namespace.messages;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
/**
* Java class for PropertyType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PropertyType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Value" type="{http://www.extra-standard.de/namespace/message/1}ValueType"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.extra-standard.de/namespace/message/1}PropertyNamesType" />
* <attribute name="type" type="{http://www.extra-standard.de/namespace/message/1}XSDPrefixedTypeCodes" default="xs:string" />
* <attribute name="event" type="{http://www.extra-standard.de/namespace/message/1}EventNamesType" default="http://www.extra-standard.de/event/Default" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PropertyType", propOrder = {
"value"
})
public class Property {
@XmlElement(name = "Value", required = true)
protected Value value;
@XmlAttribute(name = "name", required = true)
protected String name;
@XmlAttribute(name = "type")
protected QName type;
@XmlAttribute(name = "event")
protected String event;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link Value }
*
*/
public Value getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link Value }
*
*/
public void setValue(Value value) {
this.value = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link QName }
*
*/
public QName getType() {
if (type == null) {
return new QName("http://www.w3.org/2001/XMLSchema", "string", "xs");
} else {
return type;
}
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link QName }
*
*/
public void setType(QName value) {
this.type = value;
}
/**
* Gets the value of the event property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEvent() {
if (event == null) {
return "http://www.extra-standard.de/event/Default";
} else {
return event;
}
}
/**
* Sets the value of the event property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEvent(String value) {
this.event = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy