📄 simplereference.java
字号:
package cn.com.chinatelecom.schema.ctcc.common.v2_1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for SimpleReference complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="SimpleReference">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="endpoint" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
* <element name="interfaceName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="correlator" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SimpleReference", propOrder = {
"endpoint",
"interfaceName",
"correlator"
})
public class SimpleReference {
@XmlElement(required = true)
protected String endpoint;
@XmlElement(required = true)
protected String interfaceName;
@XmlElement(required = true)
protected String correlator;
/**
* Gets the value of the endpoint property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEndpoint() {
return endpoint;
}
/**
* Sets the value of the endpoint property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEndpoint(String value) {
this.endpoint = value;
}
/**
* Gets the value of the interfaceName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInterfaceName() {
return interfaceName;
}
/**
* Sets the value of the interfaceName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInterfaceName(String value) {
this.interfaceName = value;
}
/**
* Gets the value of the correlator property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCorrelator() {
return correlator;
}
/**
* Sets the value of the correlator property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCorrelator(String value) {
this.correlator = value;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -