com.sun.java.xml.ns.javaee.String Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaee6 Show documentation
Show all versions of javaee6 Show documentation
Plugin for jQAssistant to be able to scan and to
analyze Java EE 6 related artifacts.
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 generiert
// Siehe http://java.sun.com/xml/jaxb
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2022.11.04 um 03:34:38 PM CET
//
package com.sun.java.xml.ns.javaee;
import javax.annotation.Generated;
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;
/**
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "string", namespace = "http://java.sun.com/xml/ns/javaee", propOrder = {
"value"
})
@XmlSeeAlso({
TransportGuaranteeType.class,
ResSharingScopeType.class,
AuthMethodType.class,
JavaIdentifierType.class,
ResAuthType.class,
RoleNameType.class,
GenericBooleanType.class,
EjbRefTypeType.class,
JavaTypeType.class,
AddressingResponsesType.class,
JndiNameType.class,
PathType.class,
PersistenceContextTypeType.class,
TrackingModeType.class,
JdbcUrlType.class,
MimeTypeType.class,
NonEmptyStringType.class,
WarPathType.class,
EjbLinkType.class,
DisplayNameType.class,
MessageDestinationUsageType.class,
FullyQualifiedClassType.class,
DispatcherType.class,
MessageDestinationLinkType.class
})
@Generated(value = "com.sun.tools.xjc.Driver", date = "2022-11-04T03:34:38+01:00", comments = "JAXB RI v2.2.7")
public class String {
/**
*
*/
@XmlValue
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
@Generated(value = "com.sun.tools.xjc.Driver", date = "2022-11-04T03:34:38+01:00", comments = "JAXB RI v2.2.7")
protected java.lang.String value;
/**
*
*/
@XmlAttribute(name = "id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
@Generated(value = "com.sun.tools.xjc.Driver", date = "2022-11-04T03:34:38+01:00", comments = "JAXB RI v2.2.7")
protected java.lang.String id;
/**
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2022-11-04T03:34:38+01:00", comments = "JAXB RI v2.2.7")
public java.lang.String getValue() {
return value;
}
/**
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2022-11-04T03:34:38+01:00", comments = "JAXB RI v2.2.7")
public void setValue(java.lang.String value) {
this.value = value;
}
/**
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2022-11-04T03:34:38+01:00", comments = "JAXB RI v2.2.7")
public java.lang.String getId() {
return id;
}
/**
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2022-11-04T03:34:38+01:00", comments = "JAXB RI v2.2.7")
public void setId(java.lang.String value) {
this.id = value;
}
}