com.sun.enterprise.admin.servermgmt.xml.stringsubs.Property Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payara-micro Show documentation
Show all versions of payara-micro Show documentation
Micro Distribution of the Payara Project for IBM JDK
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.08.07 at 01:01:30 PM BST
//
package com.sun.enterprise.admin.servermgmt.xml.stringsubs;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="key" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <attribute name="type" type="{http://xmlns.oracle.com/cie/glassfish/stringsubs}propertyType" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "property")
public class Property {
@XmlAttribute(name = "key", required = true)
@XmlSchemaType(name = "anySimpleType")
protected String key;
@XmlAttribute(name = "value", required = true)
@XmlSchemaType(name = "anySimpleType")
protected String value;
@XmlAttribute(name = "type")
protected PropertyType type;
/**
* Gets the value of the key property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKey() {
return key;
}
/**
* Sets the value of the key property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKey(String value) {
this.key = value;
}
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link PropertyType }
*
*/
public PropertyType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link PropertyType }
*
*/
public void setType(PropertyType value) {
this.type = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy