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

      Constructors 
      Constructor and Description
      OperationParameter(java.lang.String name, java.lang.String type, java.lang.String description)
      Constructs a new OperationParameter object
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      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) 
      java.lang.String toString() 
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • OperationParameter

        public OperationParameter(java.lang.String name,
                                  java.lang.String type,
                                  java.lang.String description)
        Constructs a new OperationParameter object
    • Method Detail

      • 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)
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object