Class ReadPoint


  • public class ReadPoint
    extends java.lang.Object
    This class contains the functionality related to read point (Antenna). It exposes functionality like enable or get read point status
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      READPOINT_STATUS getReadPointStatus​(short antennaID)
      Gets the Read Point (Antenna) status as enabled or not This method gets the read point status for the specified antenna ID as enabled or not.
      void setReadPointStatus​(short antennaID, READPOINT_STATUS readpointStatus)
      Sets the Read Point (Antenna) status to enable or disable state.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getReadPointStatus

        public READPOINT_STATUS getReadPointStatus​(short antennaID)
                                            throws InvalidUsageException,
                                                   OperationFailureException
        Gets the Read Point (Antenna) status as enabled or not This method gets the read point status for the specified antenna ID as enabled or not.
        Parameters:
        antennaID - This must be valid antenna ID. 0 is not valid antenna ID
        Returns:
        Read Point Status as enabled or disabled for the given antenna ID
        Throws:
        InvalidUsageException
        OperationFailureException - This exception is thrown when the parameter is invalid or not logged in
      • setReadPointStatus

        public void setReadPointStatus​(short antennaID,
                                       READPOINT_STATUS readpointStatus)
                                throws InvalidUsageException,
                                       OperationFailureException
        Sets the Read Point (Antenna) status to enable or disable state. To enable or disable the Antenna, this method can be invoked with antenna ID. This call will take few seconds to perform the required operation.
        Parameters:
        antennaID - This must be valid antenna ID. 0 is not valid antenna ID
        readpointStatus - Contains the value to enable or disable from enumeration
        Throws:
        InvalidUsageException
        OperationFailureException - This exception is thrown when the parameter is invalid or not logged in