Searched defs:jsonSerialisation (Results 1 - 5 of 5) sorted by relevance

/forgerock/openam/openam-push-notification/src/main/java/org/forgerock/openam/services/push/dispatch/
H A DAbstractPredicate.java33 protected final JSONSerialisation jsonSerialisation = InjectorHolder.getInstance(JSONSerialisation.class); field in class:AbstractPredicate
37 return jsonSerialisation.serialise(this);
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/cts/
H A DCoreRestCtsGuiceModule.java47 public CoreTokenResource getCoreTokenResource(JSONSerialisation jsonSerialisation, argument
49 return new CoreTokenResource(jsonSerialisation, ctsPersistentStore, debug);
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/cts/adapters/
H A DSessionAdapterTest.java49 private JSONSerialisation jsonSerialisation; field in class:SessionAdapterTest
56 jsonSerialisation = mock(JSONSerialisation.class);
58 adapter = new SessionAdapter(tokenIdFactory, coreTokenConfig, jsonSerialisation, blobUtils);
89 given(jsonSerialisation.deserialise(anyString(), eq(InternalSession.class))).willReturn(session);
90 given(jsonSerialisation.serialise(any())).willReturn(new String(mockByteData));
95 jsonSerialisation, blobUtils);
154 given(jsonSerialisation.deserialise(anyString(), any(Class.class))).willReturn(mockSession);
161 given(jsonSerialisation.serialise(any())).willReturn("");
181 given(jsonSerialisation.deserialise(anyString(), any(Class.class))).willReturn(mockSession);
188 given(jsonSerialisation
[all...]
/forgerock/openam/openam-push-notification/src/main/java/org/forgerock/openam/services/push/sns/
H A DSnsMessageResource.java95 private final JSONSerialisation jsonSerialisation; field in class:SnsMessageResource
104 * @param jsonSerialisation Used to perform the serialisation necessary for inserting tokens into the CTS.
110 JSONSerialisation jsonSerialisation, @Named("frPush") Debug debug,
113 this.jsonSerialisation = jsonSerialisation;
220 (Predicate) jsonSerialisation.deserialise((String) entry.getValue(), Class.forName(className));
238 coreToken.setBlob(jsonSerialisation.serialise(actionContent.getObject()).getBytes());
109 SnsMessageResource(CTSPersistentStore coreTokenService, PushNotificationService pushNotificationService, JSONSerialisation jsonSerialisation, @Named(�) Debug debug, JwtReconstruction jwtReconstruction) argument
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/
H A DCoreRestGuiceModule.java290 public CoreTokenResource getCoreTokenResource(JSONSerialisation jsonSerialisation, argument
292 return new CoreTokenResource(jsonSerialisation, ctsPersistentStore, debug);

Completed in 39 milliseconds