Class ProcedureObjectTypeImpl
- java.lang.Object
-
- net.officefloor.activity.impl.procedure.ProcedureObjectTypeImpl
-
- All Implemented Interfaces:
ProcedureObjectType
public class ProcedureObjectTypeImpl extends java.lang.Object implements ProcedureObjectType
ProcedureObjectType
implementation.- 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.String
getObjectName()
Obtains the name for theProcedureObjectType
.java.lang.Class<?>
getObjectType()
Obtains the required type of the dependentObject
.java.lang.String
getTypeQualifier()
Obtains the qualifier on the type.
-
-
-
Method Detail
-
getObjectName
public java.lang.String getObjectName()
Description copied from interface:ProcedureObjectType
Obtains the name for theProcedureObjectType
.- Specified by:
getObjectName
in interfaceProcedureObjectType
- Returns:
- Name for the
ProcedureObjectType
.
-
getObjectType
public java.lang.Class<?> getObjectType()
Description copied from interface:ProcedureObjectType
Obtains the required type of the dependentObject
.- Specified by:
getObjectType
in interfaceProcedureObjectType
- Returns:
- Required type of the dependent
Object
.
-
getTypeQualifier
public java.lang.String getTypeQualifier()
Description copied from interface:ProcedureObjectType
Obtains the qualifier on the type.
This is to enable qualifying the type of dependency required.
- Specified by:
getTypeQualifier
in interfaceProcedureObjectType
- Returns:
- Qualifier on the type. May be
null
if not qualifying the type.
-
-