| com.nabhinc.ws.core.BaseObject
All known Subclasses: com.nabhinc.ws.core.BaseObjectImpl,
BaseObject | public interface BaseObject (Code) | | Base interface for all system objects in Web services framework.
It defines methods for getting and setting object properties, and
a destroy that indicates end of the lifecycle.
author: Padmanabh Dabke author: (c) 2005 Nabh Information Systems, Inc. All Rights Reserved. |
destroy | void destroy()(Code) | | Indicates that the object will no longer be used. Should perform
finalization operations, and unload it from memory.
|
setProperties | void setProperties(PropertyInfo[] props) throws WebServiceException(Code) | | Assigns new properties to the object. Note that we do not
need all information contained in the ProperyInfo objects
(e.g., prompt), but we didn't really want to define
another class.
Parameters: props - An array of PropertyInfo objects that provide property names. values, etc. |
|
|