- All Known Implementing Classes:
MOAccessImpl,SimMOFactory.SimMOAccess
public interface MOAccess
The
MOAccess interface defines means to determine the maximum
access supported by a managed object.- Version:
- 1.0
- Author:
- Frank Fock
-
Method Summary
Modifier and TypeMethodDescriptionbooleanCheck whether the managed object can be created (through a SET request on a non existant instance of a columnar object).booleanCheck whether the managed object can be send in a notification.booleanCheck whether the managed object can be read (i.e.booleanCheck whether the managed object can be written (i.e.
-
Method Details
-
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.
-