Package com.zebra.rfid.api3
Class ReadPoint
java.lang.Object
com.zebra.rfid.api3.ReadPoint
This class contains the functionality related to read point (Antenna). It
exposes functionality like enable or get read point status
-
Method Summary
Modifier and TypeMethodDescriptiongetReadPointStatus(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.voidsetReadPointStatus(short antennaID, READPOINT_STATUS readpointStatus) Sets the Read Point (Antenna) status to enable or disable state.
-
Method Details
-
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:
InvalidUsageExceptionOperationFailureException- 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 IDreadpointStatus- Contains the value to enable or disable from enumeration- Throws:
InvalidUsageExceptionOperationFailureException- This exception is thrown when the parameter is invalid or not logged in
-