-
- All Known Implementing Classes:
MOAccessImpl
,SimMOFactory.SimMOAccess
public interface MOAccess
TheMOAccess
interface 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 boolean
isAccessibleForCreate()
Check whether the managed object can be created (through a SET request on a non existant instance of a columnar object).boolean
isAccessibleForNotify()
Check whether the managed object can be send in a notification.boolean
isAccessibleForRead()
Check whether the managed object can be read (i.e.boolean
isAccessibleForWrite()
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:
true
if 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:
true
if the managed object instance(s) can be written.
-
isAccessibleForNotify
boolean isAccessibleForNotify()
Check whether the managed object can be send in a notification.- Returns:
true
if 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:
true
if the managed object instance(s) can be created.
-
-