com.javelin.fpml.fx
Interface Address

All Superinterfaces:
java.lang.Cloneable, java.io.Serializable
All Known Implementing Classes:
AddressBean

public interface Address
extends java.lang.Cloneable, java.io.Serializable

Address.java

null

Author:
Javelin Software
See Also:
AddressHome, AddressSession, AddressValidator, AddressBean, com.javelin.fpml.fx.lazy.LazyAddressBean

Method Summary
 java.lang.Object clone()
          Clone bean without throwing an Exception.
 java.lang.Integer getAddressKey()
          Get the Address Key.
 java.lang.String getCity()
          Get the City.
 Country getCountry()
          Get the Country.
 java.lang.String getPostalCode()
          Get the Postal Code.
 RoutingExplicitDetails getRoutingExplicitDetailsRoutingAddress()
          Get the RoutingExplicitDetailsRoutingAddress dependent on this table.
 RoutingIdsAndExplicitDetails getRoutingIdsAndExplicitDetailsRoutingAddress()
          Get the RoutingIdsAndExplicitDetailsRoutingAddress dependent on this table.
 java.lang.String getState()
          Get the State.
 StreetAddress getStreetAddress()
          Get the Street Address.
 void setAddressKey(java.lang.Integer addressKey)
          Set the Address Key.
 void setCity(java.lang.String city)
          Set the City.
 void setCountry(Country country)
          Set the Country.
 void setPostalCode(java.lang.String postalCode)
          Set the Postal Code.
 void setRoutingExplicitDetailsRoutingAddress(RoutingExplicitDetails routingExplicitDetails)
          Set the RoutingExplicitDetailsRoutingAddress dependent on this table.
 void setRoutingIdsAndExplicitDetailsRoutingAddress(RoutingIdsAndExplicitDetails routingIdsAndExplicitDetails)
          Set the RoutingIdsAndExplicitDetailsRoutingAddress dependent on this table.
 void setState(java.lang.String state)
          Set the State.
 void setStreetAddress(StreetAddress streetAddress)
          Set the Street Address.
 

Method Detail

getAddressKey

public java.lang.Integer getAddressKey()
Get the Address Key.

Returns:
Integer or null if it has not been set.

setAddressKey

public void setAddressKey(java.lang.Integer addressKey)
                   throws ValidationException
Set the Address Key.

Parameters:
addressKey - The value to set.
Throws:
ValidationException - If there was a problem validating the value.
See Also:
AddressValidator

getStreetAddress

public StreetAddress getStreetAddress()
Get the Street Address.

Returns:
StreetAddress or null if it has not been set.

setStreetAddress

public void setStreetAddress(StreetAddress streetAddress)
                      throws ValidationException
Set the Street Address.

Parameters:
streetAddress - The value to set.
Throws:
ValidationException - If there was a problem validating the value.
See Also:
AddressValidator

getCity

public java.lang.String getCity()
Get the City.

Returns:
String or null if it has not been set.

setCity

public void setCity(java.lang.String city)
             throws ValidationException
Set the City.

Parameters:
city - The value to set.
Throws:
ValidationException - If there was a problem validating the value.
See Also:
AddressValidator

getState

public java.lang.String getState()
Get the State.

Returns:
String or null if it has not been set.

setState

public void setState(java.lang.String state)
              throws ValidationException
Set the State.

Parameters:
state - The value to set.
Throws:
ValidationException - If there was a problem validating the value.
See Also:
AddressValidator

getCountry

public Country getCountry()
Get the Country.

Returns:
Country or null if it has not been set.

setCountry

public void setCountry(Country country)
                throws ValidationException
Set the Country.

Parameters:
country - The value to set.
Throws:
ValidationException - If there was a problem validating the value.
See Also:
AddressValidator

getPostalCode

public java.lang.String getPostalCode()
Get the Postal Code.

Returns:
String or null if it has not been set.

setPostalCode

public void setPostalCode(java.lang.String postalCode)
                   throws ValidationException
Set the Postal Code.

Parameters:
postalCode - The value to set.
Throws:
ValidationException - If there was a problem validating the value.
See Also:
AddressValidator

getRoutingExplicitDetailsRoutingAddress

public RoutingExplicitDetails getRoutingExplicitDetailsRoutingAddress()
                                                               throws ValidationException
Get the RoutingExplicitDetailsRoutingAddress dependent on this table.

Returns:
RoutingExplicitDetails.
Throws:
ValidationException - If there was a problem validating the value.
See Also:
Address

setRoutingExplicitDetailsRoutingAddress

public void setRoutingExplicitDetailsRoutingAddress(RoutingExplicitDetails routingExplicitDetails)
                                             throws ValidationException
Set the RoutingExplicitDetailsRoutingAddress dependent on this table.

Throws:
ValidationException - If there was a problem validating the value.
See Also:
Address

getRoutingIdsAndExplicitDetailsRoutingAddress

public RoutingIdsAndExplicitDetails getRoutingIdsAndExplicitDetailsRoutingAddress()
                                                                           throws ValidationException
Get the RoutingIdsAndExplicitDetailsRoutingAddress dependent on this table.

Returns:
RoutingIdsAndExplicitDetails.
Throws:
ValidationException - If there was a problem validating the value.
See Also:
Address

setRoutingIdsAndExplicitDetailsRoutingAddress

public void setRoutingIdsAndExplicitDetailsRoutingAddress(RoutingIdsAndExplicitDetails routingIdsAndExplicitDetails)
                                                   throws ValidationException
Set the RoutingIdsAndExplicitDetailsRoutingAddress dependent on this table.

Throws:
ValidationException - If there was a problem validating the value.
See Also:
Address

clone

public java.lang.Object clone()
Clone bean without throwing an Exception.

Overrides:
clone in class java.lang.Object