?? customerresponsemsg.java
字號:
package com.sun.demo.openesb.types.customerresponsemsg;
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 CustomerResponseMsg complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="CustomerResponseMsg">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="decision" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="accountNum" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="balance" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomerResponseMsg", propOrder = {
"status",
"decision",
"accountNum",
"balance"
})
public class CustomerResponseMsg {
@XmlElement(required = true, nillable = true)
protected String status;
@XmlElement(required = true, nillable = true)
protected String decision;
@XmlElement(required = true, nillable = true)
protected String accountNum;
@XmlElement(required = true, type = Integer.class, nillable = true)
protected Integer balance;
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStatus(String value) {
this.status = value;
}
/**
* Gets the value of the decision property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDecision() {
return decision;
}
/**
* Sets the value of the decision property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDecision(String value) {
this.decision = value;
}
/**
* Gets the value of the accountNum property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccountNum() {
return accountNum;
}
/**
* Sets the value of the accountNum property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccountNum(String value) {
this.accountNum = value;
}
/**
* Gets the value of the balance property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getBalance() {
return balance;
}
/**
* Sets the value of the balance property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setBalance(Integer value) {
this.balance = value;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -