Interface ProcedureObjectType
-
- All Known Implementing Classes:
ProcedureObjectTypeImpl
public interface ProcedureObjectType
- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract 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
java.lang.String getObjectName()
Obtains the name for theProcedureObjectType
.- Returns:
- Name for the
ProcedureObjectType
.
-
getObjectType
java.lang.Class<?> getObjectType()
Obtains the required type of the dependentObject
.- Returns:
- Required type of the dependent
Object
.
-
getTypeQualifier
java.lang.String getTypeQualifier()
Obtains the qualifier on the type.
This is to enable qualifying the type of dependency required.
- Returns:
- Qualifier on the type. May be
null
if not qualifying the type.
-
-