public class ServerInfoResponse
extends java.lang.Object
ServerInfo
, including
customer name and ID, login, user ID, and server information.
ServerInfoResponse can include the following values:
customerID
- The ID of the customer account the login belongs to.
customerName
- The name of the customer account the login belongs to.
login
- A valid username for the server.
primaryServerUrl
-
secondaryServerUrl
- Often the secondary server URL is set to "0" (default), which means "no route".
userID
- the user ID for the supplied login (username).
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ns:serverInfoResponse xmlns:ns="http://services">
<ns:return xsi:type="ax21:ServerInfoResponse" xmlns:ax21="http://objects.services/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ax21:customerId>64880571</ax21:customerId>
<ax21:customerName>jennyrose</ax21:customerName>
<ax21:login/>myLogin</ax21:login>
<ax21:primaryServerUrl>https://test.innotas.com</ax21:primaryServerUrl>
<ax21:secondaryServerUrl xsi:nil="true"/>
<ax21:userId>811637816</ax21:userId>
</ns:return>
</ns:serverInfoResponse>
</soapenv:Body>
</soapenv:Envelope>
Constructor and Description |
---|
ServerInfoResponse() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCustomerId() |
java.lang.String |
getCustomerName() |
java.lang.String |
getLogin() |
java.lang.String |
getPrimaryServerUrl() |
java.lang.String |
getSecondaryServerUrl() |
java.lang.String |
getUserId() |
OMElement |
serialize(OMFactory fac) |
void |
setCustomerId(java.lang.String customerId) |
void |
setCustomerName(java.lang.String customerName) |
void |
setLogin(java.lang.String login) |
void |
setPrimaryServerUrl(java.lang.String primaryServerUrl) |
void |
setSecondaryServerUrl(java.lang.String secondaryServerUrl) |
void |
setUserId(java.lang.String userId) |
public java.lang.String getCustomerId()
public void setCustomerId(java.lang.String customerId)
public java.lang.String getCustomerName()
public void setCustomerName(java.lang.String customerName)
public java.lang.String getLogin()
public void setLogin(java.lang.String login)
public java.lang.String getPrimaryServerUrl()
public void setPrimaryServerUrl(java.lang.String primaryServerUrl)
public java.lang.String getSecondaryServerUrl()
public void setSecondaryServerUrl(java.lang.String secondaryServerUrl)
public java.lang.String getUserId()
public void setUserId(java.lang.String userId)
public OMElement serialize(OMFactory fac)