This API is available on Firefox OS for internal applications only.
The MozMobileICCInfo interface allow to access access to information stored in the device's ICC card. The navigator.mozMobileConnection uses it through its iccInfo property.
Interface overview
interface MozMobileICCInfo
{
  readonly attribute DOMString iccid;
  readonly attribute boolean isDisplayNetworkNameRequired;
  readonly attribute boolean isDisplaySpnRequired;
  readonly attribute unsigned short mcc;
  readonly attribute unsigned short mnc;
  readonly attribute DOMString msisdn;
  readonly attribute DOMString spn;
};
Properties
- MozMobileICCInfo.iccidRead only
- A string representing the Integrated Circuit Card Identifier.
- MozMobileICCInfo.isDisplayNetworkNameRequiredRead only
- A boolean that indicates the Network name must be a part of any displayed carrier name.
- MozMobileICCInfo.isDisplaySpnRequiredRead only
- A boolean that indicates the Service provider name must be a part of any displayed carrier name.
- MozMobileICCInfo.mccRead only
- A number representing the Mobile Country Code (MCC) of the subscriber's home network.
- MozMobileICCInfo.mncRead only
- A number representing the Mobile Network Code (MNC) of the subscriber's home network.
- MozMobileICCInfo.msisdnRead only
- A string representing the Mobile Station ISDN Number (MSISDN) of the subscriber's, aka his phone number.
- MozMobileICCInfo.spnRead only
- A string representing the Service Provider Name (SPN) of the subscriber's home network.
Methods
None.
Specification
Not part of any specification