com.ibm.commerce.webservice.datatype
Class Address

java.lang.Object
  com.ibm.commerce.webservice.datatype.Address
All Implemented Interfaces:
java.io.Serializable

public class Address
extends java.lang.Object
implements java.io.Serializable

This class represents the complex type

 
 
 
 
 
 
See Also:
Serialized Form

Constructor Summary
Address()
default constructor for address
Address(java.lang.String[] addressLine, java.lang.String city, java.lang.String state, java.lang.String zip, java.lang.String country)
constructor for address
Method Summary
java.lang.String[] getAddressLine()
get the value of AddressLine
java.lang.String getCity()
get the value of City
java.lang.String getCountry()
get the value of Country
java.lang.String getState()
get the value of State
java.lang.String getZip()
get the value of Zip
void setAddressLine(java.lang.String[] newAddressLine)
set the value of AddressLine
void setCity(java.lang.String newCity)
set the value of City
void setCountry(java.lang.String newCountry)
set the value of Country
void setState(java.lang.String newState)
set the value of State
void setZip(java.lang.String newZip)
set the value of Zip
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructor Detail

Address

public Address()
default constructor for address

Address

public Address(java.lang.String[] addressLine,
               java.lang.String city,
               java.lang.String state,
               java.lang.String zip,
               java.lang.String country)
constructor for address
Method Detail

getAddressLine

public java.lang.String[] getAddressLine()
get the value of AddressLine
Returns:
String[] value of AddressLine

getCity

public java.lang.String getCity()
get the value of City
Returns:
String value of City

getState

public java.lang.String getState()
get the value of State
Returns:
String value of State

getZip

public java.lang.String getZip()
get the value of Zip
Returns:
String value of Zip

getCountry

public java.lang.String getCountry()
get the value of Country
Returns:
String value of Country

setAddressLine

public void setAddressLine(java.lang.String[] newAddressLine)
set the value of AddressLine
Returns:
void

setCity

public void setCity(java.lang.String newCity)
set the value of City
Returns:
void

setState

public void setState(java.lang.String newState)
set the value of State
Returns:
void

setZip

public void setZip(java.lang.String newZip)
set the value of Zip
Returns:
void

setCountry

public void setCountry(java.lang.String newCountry)
set the value of Country
Returns:
void

Feedback