Class ProcedureObjectTypeImpl
- java.lang.Object
-
- net.officefloor.activity.impl.procedure.ProcedureObjectTypeImpl
-
- All Implemented Interfaces:
ProcedureObjectType
public class ProcedureObjectTypeImpl extends java.lang.Object implements ProcedureObjectType
ProcedureObjectTypeimplementation.- Author:
- Daniel Sagenschneider
-
-
Constructor Summary
Constructors Constructor Description ProcedureObjectTypeImpl(java.lang.String objectName, java.lang.Class<?> objectType, java.lang.String typeQualifier)Instantiate.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetObjectName()Obtains the name for theProcedureObjectType.java.lang.Class<?>getObjectType()Obtains the required type of the dependentObject.java.lang.StringgetTypeQualifier()Obtains the qualifier on the type.
-
-
-
Method Detail
-
getObjectName
public java.lang.String getObjectName()
Description copied from interface:ProcedureObjectTypeObtains the name for theProcedureObjectType.- Specified by:
getObjectNamein interfaceProcedureObjectType- Returns:
- Name for the
ProcedureObjectType.
-
getObjectType
public java.lang.Class<?> getObjectType()
Description copied from interface:ProcedureObjectTypeObtains the required type of the dependentObject.- Specified by:
getObjectTypein interfaceProcedureObjectType- Returns:
- Required type of the dependent
Object.
-
getTypeQualifier
public java.lang.String getTypeQualifier()
Description copied from interface:ProcedureObjectTypeObtains the qualifier on the type.
This is to enable qualifying the type of dependency required.
- Specified by:
getTypeQualifierin interfaceProcedureObjectType- Returns:
- Qualifier on the type. May be
nullif not qualifying the type.
-
-