Class InputParameterDescription

java.lang.Object
de.fraunhofer.iese.mydata.common.MyDataEntity
de.fraunhofer.iese.mydata.component.information.method.InputParameterDescription

@Entity public class InputParameterDescription extends MyDataEntity
The Class InputParameterDescription is used by different component as PXP, PIP, PEP and others to specify MethodInterfaceDescription at the time of registration at PMP.
  • Constructor Details

    • InputParameterDescription

      public InputParameterDescription(String name, String description, Class<?> type)
      Instantiates a new input parameter description.
      Parameters:
      name - the name of the parameter
      description - the description of the parameter
      type - the type of the parameter
    • InputParameterDescription

      public InputParameterDescription(String name, String description, boolean mandatory, Class<?> clazz)
      Instantiates a new input parameter description.
      Parameters:
      name - the name of the parameter
      description - the description of the parameter
      mandatory - indication a parameter that is mandatory
      clazz - the clazz of the parameter
    • InputParameterDescription

      public InputParameterDescription(String name, String description, boolean mandatory, Type type, Class<?> clazz)
      Instantiates a new input parameter description.
      Parameters:
      name - the name
      description - the description
      mandatory - the mandatory
      type - the type
      clazz - the clazz
  • Method Details