Searched defs:amlbCookie (Results 1 - 3 of 3) sorted by relevance

/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/utils/
H A DMessageUtils.java51 public int respond(String endpoint, String amlbCookie, String base64Secret, argument
64 if (amlbCookie != null) {
65 connection.setRequestProperty("Cookie", amlbCookie);
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/message/
H A DGcmService.java116 String amlbCookie = new String(Base64.decode(base64amlbCookie));
156 notification = generateNotification(messageId, push, base64Challenge, amlbCookie, ttl);
165 String messageId, Push push, String base64Challenge, String amlbCookie, int ttl)
177 .setAmlbCookie(amlbCookie);
164 generateNotification( String messageId, Push push, String base64Challenge, String amlbCookie, int ttl) argument
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/notifications/
H A DPushNotification.java51 private static final String AMLB_COOKIE = "amlbCookie";
52 private final String amlbCookie; field in class:PushNotification
57 private PushNotification(Mechanism mechanism, long id, String amlbCookie, Calendar timeAdded, Calendar timeExpired, boolean accepted, boolean active, String messageId, String base64Challenge) { argument
59 this.amlbCookie = amlbCookie;
77 data.put(AMLB_COOKIE, amlbCookie);
88 returnCode = getMessageUtils().respond(push.getEndpoint(), amlbCookie, push.getSecret(), messageId, data);
104 returnCode = getMessageUtils().respond(push.getEndpoint(), amlbCookie, push.getSecret(), messageId, data);
144 private String amlbCookie; field in class:PushNotification.PushNotificationBuilder
165 public PushNotificationBuilder setAmlbCookie(String amlbCookie) { argument
[all...]

Completed in 58 milliseconds