mobicontrol.wifi.AccessPoint

This class represents a Wi-Fi Access Point.

AccessPoint

Since:

Members

readonly, nullable caCertificates :Array.<mobicontrol.cert.Certificate>

Certificate Authority (CA) certificates used by the access point.

This property is null if the access point doesn't use CA certificates, or if the CA certificates cannot be determined.

Since:
Example
var accessPointList = mobicontrol.wifi.listAccessPoints();
accessPointList.filter(ap => ap.hasEapSecurity).forEach(ap => {

    var caCerts = ap.caCertificates;
    if (caCerts != null) {
        caCerts.forEach(caCert => {
           mobicontrol.log.info("Serial number of ca certificate is " + caCert.serialNumber);
      });
   }
});

readonly, nullable clientCertificate :mobicontrol.cert.Certificate

Client certificate used by the access point.

This property is null if the access point doesn't use client certificate, or if the client certificate cannot be determined.

Since:

readonly hasEapSecurity :boolean

true if the access point has EAP security type.
Since:

readonly hasProxy :boolean

true if the access point has a proxy.
Since:

readonly hasWepSecurity :boolean

true if the access point has WEP security type.
Since:

readonly hasWpaSecurity :boolean

true if the access point has WPA security type.
Since:

readonly proxyExclusionList :Array.<string>

Proxy exclusion list.
Since:

readonly, nullable proxyHost :string

Proxy host.
Since:

readonly, nullable proxyPacUrl :string

PAC Proxy URL.
Since:

readonly, nullable proxyPort :number

Proxy port.
Since:

readonly ssid :string

Service set identifier.
Since:

readonly state :mobicontrol.wifi.AccessPointState

Access point state.

Note: On some platforms prior to Android 8.0 the access point state does not always reflect the network's state properly.

Since: