cz.nic.xml.epp.contact_1.IdentUpdT Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fred-client Show documentation
Show all versions of fred-client Show documentation
A Java EPP client for FRED (Free Registry for ENUM and Domains)
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.12.21 at 12:01:05 PM CET
//
package cz.nic.xml.epp.contact_1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
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;
/**
* Java class for identUpdT complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="identUpdT">
* <simpleContent>
* <extension base="<http://www.nic.cz/xml/epp/contact-1.6>identValueT">
* <attribute name="type" type="{http://www.nic.cz/xml/epp/contact-1.6}identTypeT" />
* </extension>
* </simpleContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "identUpdT", propOrder = {
"value"
})
public class IdentUpdT {
@XmlValue
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String value;
@XmlAttribute(name = "type")
protected IdentTypeT type;
/**
* 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 IdentTypeT }
*
*/
public IdentTypeT getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link IdentTypeT }
*
*/
public void setType(IdentTypeT value) {
this.type = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy