Interface JaloAccessorsService
-
- All Known Implementing Classes:
DefaultJaloAccessorsService
public interface JaloAccessorsServiceAllows to check if given type can be used without JALO layer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisSLDSafe(java.lang.String typeCode)Returns true if type with given typeCode supports ServiceLayerDirect for reading and writing data.booleanisSLDSafeForRead(java.lang.String typeCode)Returns true if type with given typeCode supports ServiceLayerDirect for reading data.booleanisSLDSafeForWrite(java.lang.String typeCode)Returns true if type with given typeCode supports ServiceLayerDirect for writing data.
-
-
-
Method Detail
-
isSLDSafe
boolean isSLDSafe(java.lang.String typeCode)
Returns true if type with given typeCode supports ServiceLayerDirect for reading and writing data.
-
isSLDSafeForRead
boolean isSLDSafeForRead(java.lang.String typeCode)
Returns true if type with given typeCode supports ServiceLayerDirect for reading data.
-
isSLDSafeForWrite
boolean isSLDSafeForWrite(java.lang.String typeCode)
Returns true if type with given typeCode supports ServiceLayerDirect for writing data.
-
-