com.javelin.fpml.schemes
Interface BusinessCenter

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

public interface BusinessCenter
extends Scheme, java.lang.Cloneable, java.io.Serializable

BusinessCenter.java

null

Author:
Javelin Software
See Also:
BusinessCenterHome, BusinessCenterSession, BusinessCenterValidator, BusinessCenterBean, com.javelin.fpml.schemes.lazy.LazyBusinessCenterBean

Method Summary
 java.lang.Object clone()
          Clone bean without throwing an Exception.
 java.lang.Integer getBusinessCenterKey()
          Get the Business Center Key.
 BusinessCenters getBusinessCenters()
          Get the Business Centers.
 void setBusinessCenterKey(java.lang.Integer businessCenterKey)
          Set the Business Center Key.
 void setBusinessCenters(BusinessCenters businessCenters)
          Set the Business Centers.
 
Methods inherited from interface com.javelin.fpml.schemes.Scheme
getCode, getDescription, getSchemeKey, getSource, setCode, setDescription, setSchemeKey, setSource
 

Method Detail

getBusinessCenterKey

public java.lang.Integer getBusinessCenterKey()
Get the Business Center Key.

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

setBusinessCenterKey

public void setBusinessCenterKey(java.lang.Integer businessCenterKey)
                          throws ValidationException
Set the Business Center Key.

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

getBusinessCenters

public BusinessCenters getBusinessCenters()
Get the Business Centers.

Returns:
BusinessCenters or a default value of null if it has not been set.

setBusinessCenters

public void setBusinessCenters(BusinessCenters businessCenters)
                        throws ValidationException
Set the Business Centers.

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

clone

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

Specified by:
clone in interface Scheme
Overrides:
clone in class java.lang.Object