Searched refs:MISSING_PARAM_MSG_TMPL (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/net/ |
D | Ikev2VpnProfile.java | 72 private static final String MISSING_PARAM_MSG_TMPL = "Required parameter was not provided: %s"; field in Ikev2VpnProfile 126 checkNotNull(serverAddr, MISSING_PARAM_MSG_TMPL, "Server address"); in Ikev2VpnProfile() 127 checkNotNull(userIdentity, MISSING_PARAM_MSG_TMPL, "User Identity"); in Ikev2VpnProfile() 128 checkNotNull(allowedAlgorithms, MISSING_PARAM_MSG_TMPL, "Allowed Algorithms"); in Ikev2VpnProfile() 155 checkStringNotEmpty(mServerAddr, MISSING_PARAM_MSG_TMPL, "Server Address"); in validate() 156 checkStringNotEmpty(mUserIdentity, MISSING_PARAM_MSG_TMPL, "User Identity"); in validate() 168 checkNotNull(mUsername, MISSING_PARAM_MSG_TMPL, "Username"); in validate() 169 checkNotNull(mPassword, MISSING_PARAM_MSG_TMPL, "Password"); in validate() 175 checkNotNull(mPresharedKey, MISSING_PARAM_MSG_TMPL, "Preshared Key"); in validate() 178 checkNotNull(mUserCert, MISSING_PARAM_MSG_TMPL, "User cert"); in validate() [all …]
|