Home
last modified time | relevance | path

Searched refs:sExecs (Results 1 – 1 of 1) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/soap/command/
DSppCommand.java76 private static final Map<String, Integer> sExecs = new HashMap<>(); field in SppCommand
78 sExecs.put("launchBrowserToURI", ExecCommandId.BROWSER);
79 sExecs.put("getCertificate", ExecCommandId.GET_CERT);
80 sExecs.put("useClientCertTLS", ExecCommandId.USE_CLIENT_CERT_TLS);
81 sExecs.put("uploadMO", ExecCommandId.UPLOAD_MO);
107 if (!sExecs.containsKey(commandInfo.getName())) { in SppCommand()
111 mExecCommandId = sExecs.get(commandInfo.getName()); in SppCommand()