jp.terasoluna.fw.service.thin
Class BLogicProperty

java.lang.Object
  Extend the above jp.terasoluna.fw.service.thin.BLogicProperty
All implemented interfaces:
java.io.Serializable

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

Class that retains the individual property information of business logic input/output information.

This class retains the property settings of input JavaBean and output JavaBean of business logic from the blogic-io.xml which is the business logic input/output information definition file of BLogicIOPlugIn.
For the settings of business logic input/output information that includes this class, refer to BLogicIOPlugIn

See Also:
BLogicIOPlugIn, AbstractBLogicMapper, BLogicMapper, BLogicIO, BLogicResources, BLogicResult, AbstractBLogicAction, BLogicAction, Serialized form

Field Summary
private  java.lang.String blogicProperty
          Property name handled in the business logic.
private  java.lang.String property
          Property name of Web tier objects.
private static long serialVersionUID
          Serial version ID
private  java.lang.String sourceOrDest
          Value that identifies the Web tier objects of input source or output destination.
 
Constructor Summary
BLogicProperty()
           
 
Method Summary
 java.lang.String getBLogicProperty()
          Fetches the property name handled in business logic.
 java.lang.String getDest()
          Fetches the output destination.
 java.lang.String getProperty()
          Fetches the property name.
 java.lang.String getSource()
          Fetches the input source.
 void setBLogicProperty(java.lang.String blogicProperty)
          Sets the property name handled in business logic.
 void setDest(java.lang.String dest)
          Sets output destination.
 void setProperty(java.lang.String property)
          Sets property name.
 void setSource(java.lang.String source)
          Sets input source.
 
Method inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Details

serialVersionUID

private static final long serialVersionUID
Serial version ID

See Also:
Constant field value

property

private java.lang.String property
Property name of Web tier object.


blogicProperty

private java.lang.String blogicProperty
Property name handled in business logic.


sourceOrDest

private java.lang.String sourceOrDest
Value that identifies the Web tier objects of input source or output destination.

Constructor Details

BLogicProperty

public BLogicProperty()
Method Details

setProperty

public void setProperty(java.lang.String property)
Sets property name.

Parameter:
property - Property name

getProperty

public java.lang.String getProperty()
Fetches property name.

Returns:
Property name

setBLogicProperty

public void setBLogicProperty(java.lang.String blogicProperty)
Sets the property name handled in business logic.

Parameter:
blogicProperty - Property name

getBLogicProperty

public java.lang.String getBLogicProperty()
Fetches the property name handled in business logic.

Returns:
Property name

setSource

public void setSource(java.lang.String source)
Sets input source.

Parameter:
source - Input source

getSource

public java.lang.String getSource()
Fetches input source.

Returns:
Input source

setDest

public void setDest(java.lang.String dest)
Sets output destination.

Parameter:
dest - Output destination

getDest

public java.lang.String getDest()
Fetches output destination.

Returns:
Output destination