com.ibm.itim.dataservices.model
Class OperationParameter
java.lang.Object
|
+--com.ibm.itim.dataservices.model.OperationParameter
- All Implemented Interfaces:
- java.io.Serializable
- public class OperationParameter
- extends java.lang.Object
- implements java.io.Serializable
Value Object class that represents the operation parameter
Support for formal parameter definition in profile operation is optional in this release
Formal parameter specification allow design time type validation on the operation and its implementation
- See Also:
ObjectProfileOperation
, Serialized Form
Constructor Summary |
OperationParameter(java.lang.String name,
java.lang.String type,
java.lang.String description)
Constructs a new OperationParameter object |
Method Summary |
java.lang.String |
getDescription()
|
java.lang.String |
getName()
Returns the name of the operation |
java.lang.String |
getType()
|
void |
setDescription(java.lang.String desc)
|
void |
setName(java.lang.String name)
Sets the name of the operation |
void |
setType(java.lang.String type)
|
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
OperationParameter
public OperationParameter(java.lang.String name,
java.lang.String type,
java.lang.String description)
- Constructs a new OperationParameter object
getName
public java.lang.String getName()
- Returns the name of the operation
- Returns:
- Operation name as a String
setName
public void setName(java.lang.String name)
- Sets the name of the operation
- Parameters:
name
- Operation name
getType
public java.lang.String getType()
setType
public void setType(java.lang.String type)
getDescription
public java.lang.String getDescription()
setDescription
public void setDescription(java.lang.String desc)