Interface MOAccess

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 Type
    Method
    Description
    boolean
    Check whether the managed object can be created (through a SET request on a non existant instance of a columnar object).
    boolean
    Check whether the managed object can be send in a notification.
    boolean
    Check whether the managed object can be read (i.e.
    boolean
    Check 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:
      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.