UUSInfopublic class UUSInfo extends Object
Fields Summary |
---|
public static final int | UUS_TYPE1_IMPLICIT | public static final int | UUS_TYPE1_REQUIRED | public static final int | UUS_TYPE1_NOT_REQUIRED | public static final int | UUS_TYPE2_REQUIRED | public static final int | UUS_TYPE2_NOT_REQUIRED | public static final int | UUS_TYPE3_REQUIRED | public static final int | UUS_TYPE3_NOT_REQUIRED | public static final int | UUS_DCS_USP | public static final int | UUS_DCS_OSIHLP | public static final int | UUS_DCS_X244 | public static final int | UUS_DCS_RMCF | public static final int | UUS_DCS_IA5c | private int | mUusType | private int | mUusDcs | private byte[] | mUusData |
Constructors Summary |
---|
public UUSInfo()
mUusType = UUS_TYPE1_IMPLICIT;
mUusDcs = UUS_DCS_IA5c;
mUusData = null;
| public UUSInfo(int uusType, int uusDcs, byte[] uusData)
mUusType = uusType;
mUusDcs = uusDcs;
mUusData = uusData;
|
Methods Summary |
---|
public int | getDcs()
return mUusDcs;
| public int | getType()
return mUusType;
| public byte[] | getUserData()
return mUusData;
| public void | setDcs(int uusDcs)
mUusDcs = uusDcs;
| public void | setType(int uusType)
mUusType = uusType;
| public void | setUserData(byte[] uusData)
mUusData = uusData;
|
|