-
- All Known Implementing Classes:
MOAccessImpl,SimMOFactory.SimMOAccess
public interface MOAccessTheMOAccessinterface defines means to determine the maximum access supported by a managed object.- Version:
- 1.0
- Author:
- Frank Fock
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisAccessibleForCreate()Check whether the managed object can be created (through a SET request on a non existant instance of a columnar object).booleanisAccessibleForNotify()Check whether the managed object can be send in a notification.booleanisAccessibleForRead()Check whether the managed object can be read (i.e.booleanisAccessibleForWrite()Check whether the managed object can be written (i.e.
-
-
-
Method Detail
-
isAccessibleForRead
boolean isAccessibleForRead()
Check whether the managed object can be read (i.e. accessed by GET, GETNEXT, or GETBULK requests).- Returns:
trueif the managed object instance(s) can be read.
-
isAccessibleForWrite
boolean isAccessibleForWrite()
Check whether the managed object can be written (i.e. accessed by SET requests).- Returns:
trueif the managed object instance(s) can be written.
-
isAccessibleForNotify
boolean isAccessibleForNotify()
Check whether the managed object can be send in a notification.- Returns:
trueif the managed object instance(s) can be send in a notification.
-
isAccessibleForCreate
boolean isAccessibleForCreate()
Check whether the managed object can be created (through a SET request on a non existant instance of a columnar object).- Returns:
trueif the managed object instance(s) can be created.
-
-