
com.sun.java.xml.ns.javaee.String Maven / Gradle / Ivy
The newest version!
package com.sun.java.xml.ns.javaee;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
*
*
* This is a special string datatype that is defined by Java EE as
* a base type for defining collapsed strings. When schemas
* require trailing/leading space elimination as well as
* collapsing the existing whitespace, this base type may be
* used.
*
*
*
* Java class for string complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="string">
* <simpleContent>
* <extension base="<http://www.w3.org/2001/XMLSchema>token">
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
* </extension>
* </simpleContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "string", propOrder = {
"value"
})
@XmlSeeAlso({
AddressingResponsesType.class,
DisplayNameType.class,
EjbLinkType.class,
EjbRefTypeType.class,
GenericBooleanType.class,
JavaIdentifierType.class,
JavaTypeType.class,
JdbcUrlType.class,
JndiNameType.class,
PersistenceContextTypeType.class,
ResAuthType.class,
ResSharingScopeType.class,
RoleNameType.class,
MessageDestinationUsageType.class,
FullyQualifiedClassType.class,
MessageDestinationLinkType.class,
PathType.class,
AuthMethodType.class,
DispatcherType.class,
MimeTypeType.class,
NonEmptyStringType.class,
TrackingModeType.class,
TransportGuaranteeType.class,
WarPathType.class
})
public class String {
@XmlValue
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected java.lang.String value;
@XmlAttribute(name = "id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected java.lang.String id;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setValue(java.lang.String value) {
this.value = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setId(java.lang.String value) {
this.id = value;
}
public String withValue(java.lang.String value) {
setValue(value);
return this;
}
public String withId(java.lang.String value) {
setId(value);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy