The property is represented in XML by the message or fault reference element's tag name:
Examples:
msgRef.setDirection(Direction.IN); if(msgRef.getDirection() == Direction.IN) ... if(msgRef.getDirection().equals(Direction.IN)) ... Note that == and .equals() are equivalent.TODO if extensibility is required, chg ctor to protected @author jkaputin@apache.org
Direction
is a typesafe enumeration of the four possible values, #in, #out, #inout, and #return.
@author Arthur Ryman (ryman@ca.ibm.com)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|