Package de.uplanet.lucy.server.rtcache
Interface ReferenceParameterInfo
-
- All Superinterfaces:
de.uplanet.lucy.server.rtcache.IRtInfo
@Scriptable public interface ReferenceParameterInfo extends de.uplanet.lucy.server.rtcache.IRtInfo
Holds the information of a reference parameter (record of LCAPPREFPARAM)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDataFieldGuid()
Get the data field GUID.String
getGuid()
Get the parameter GUID.String
getReferenceGuid()
Get the reference GUID.String
getType()
Get the type.String
getValue()
Get the parameter value.
-
-
-
Method Detail
-
getGuid
String getGuid()
Get the parameter GUID.- Returns:
- The GUID of the parameter (not
null
).
-
getReferenceGuid
String getReferenceGuid()
Get the reference GUID.- Returns:
- The reference GUID (not
null
).
-
getDataFieldGuid
String getDataFieldGuid()
Get the data field GUID.- Returns:
- The data field GUID (not
null
).
-
getType
String getType()
Get the type.- Returns:
- The type (not
null
).
-
getValue
String getValue()
Get the parameter value.- Returns:
- The parameter value (could be
null
).
-
-