Package com.motorola.oem

OEM Package - Gathers all OEM(Original Equipment Manufacturer) packages.

See:
          Description

Exception Summary
OEMException Parent Exception class to all OEM Exceptions.
 

Package com.motorola.oem Description

OEM Package - Gathers all OEM(Original Equipment Manufacturer) packages.
General Notes:
1.
Event handling is done using Java standard listeners' mechanism. The user must implement a listener, set it and implement its handler.
Handler examples:
NetworkRegistrationListener.onGSMRegStateChanged(int),
onSIMStatusChanged(int).
User implementation within these handlers must be quick or it might result with an exception.

2.
There are methods which their internal implementation uses wait/notify mechanism. These methods block their own thread until they receive back a notification. These kind of methods must not be called from handlers such as the ones described in the previous note.
Examples for these 'blocking' methods are:
Network.getLineIdPresentationStatus()
Network.getLineIdRestrictionStatus()
Network.getAvailableNetworks(int)
Network.sendUSSD(java.lang.String)
Access.setSIMPin1LockUtility(int, java.lang.String)
Access.unlockSIMPin1(java.lang.String)
Access.changeSIMPin1(java.lang.String, java.lang.String)
Access.getMSISDN()
Access.getGID1()
Access.getGID2()
A2dChannel.getValue()
DataCallConfig.getRlpRange()