use of com.unboundid.scim.data.Name in project cas by apereo.
the class Scim1PrincipalAttributeMapper method map.
/**
* Map.
*
* @param user the user
* @param p the p
* @param credential the credential
*/
public void map(final UserResource user, final Principal p, final UsernamePasswordCredential credential) {
user.setUserName(p.getId());
user.setPassword(credential.getPassword());
user.setActive(Boolean.TRUE);
user.setNickName(getPrincipalAttributeValue(p, "nickName"));
user.setDisplayName(getPrincipalAttributeValue(p, "displayName"));
final Name name = new Name(getPrincipalAttributeValue(p, "formattedName"), getPrincipalAttributeValue(p, "familyName"), getPrincipalAttributeValue(p, "middleName"), getPrincipalAttributeValue(p, "givenName"), getPrincipalAttributeValue(p, "honorificPrefix"), getPrincipalAttributeValue(p, "honorificSuffix"));
user.setName(name);
Entry entry = new Entry(getPrincipalAttributeValue(p, "mail"), "primary");
user.setEmails(CollectionUtils.wrap(entry));
entry = new Entry(getPrincipalAttributeValue(p, "phoneNumber"), "primary");
user.setPhoneNumbers(CollectionUtils.wrap(entry));
}
use of com.unboundid.scim.data.Name in project cas by apereo.
the class ScimV1PrincipalAttributeMapperTests method verifyAction.
@Test
public void verifyAction() throws Exception {
val user = new UserResource(CoreSchema.USER_DESCRIPTOR);
user.setActive(true);
user.setDisplayName("CASUser");
user.setId("casuser");
val name = new Name("formatted", "family", "middle", "givenMame", "prefix", "prefix2");
name.setGivenName("casuser");
user.setName(name);
val meta = new Meta(new Date(), new Date(), new URI("http://localhost:8215"), "1");
meta.setCreated(new Date());
user.setMeta(meta);
assertDoesNotThrow(new Executable() {
@Override
public void execute() throws Throwable {
val mapper = new ScimV1PrincipalAttributeMapper();
mapper.map(user, CoreAuthenticationTestUtils.getPrincipal(), CoreAuthenticationTestUtils.getCredentialsWithSameUsernameAndPassword());
}
});
}
use of com.unboundid.scim.data.Name in project cas by apereo.
the class PrincipalScimV1ProvisionerActionTests method verifyAction.
@Test
public void verifyAction() throws Exception {
val context = new MockRequestContext();
val request = new MockHttpServletRequest();
context.setExternalContext(new ServletExternalContext(new MockServletContext(), request, new MockHttpServletResponse()));
WebUtils.putAuthentication(CoreAuthenticationTestUtils.getAuthentication(), context);
WebUtils.putCredential(context, CoreAuthenticationTestUtils.getCredentialsWithSameUsernameAndPassword());
val user = new UserResource(CoreSchema.USER_DESCRIPTOR);
user.setActive(true);
user.setDisplayName("CASUser");
user.setId("casuser");
val name = new Name("formatted", "family", "middle", "givenMame", "prefix", "prefix2");
name.setGivenName("casuser");
user.setName(name);
val meta = new Meta(new Date(), new Date(), new URI("http://localhost:8215"), "1");
meta.setCreated(new Date());
user.setMeta(meta);
val resources = new Resources(CollectionUtils.wrapList(user));
val stream = new ByteArrayOutputStream();
resources.marshal(new JsonMarshaller(), stream);
val data = stream.toString(StandardCharsets.UTF_8);
try (val webServer = new MockWebServer(8215, new ByteArrayResource(data.getBytes(StandardCharsets.UTF_8), "REST Output"), MediaType.APPLICATION_JSON_VALUE)) {
webServer.start();
assertEquals(CasWebflowConstants.TRANSITION_ID_SUCCESS, principalScimProvisionerAction.execute(context).getId());
}
}
use of com.unboundid.scim.data.Name in project cas by apereo.
the class ScimV1PrincipalAttributeMapper method map.
/**
* Map.
*
* @param user the user
* @param p the p
* @param credential the credential
*/
public void map(final UserResource user, final Principal p, final Credential credential) {
user.setUserName(p.getId());
if (credential instanceof UsernamePasswordCredential) {
user.setPassword(UsernamePasswordCredential.class.cast(credential).getPassword());
}
user.setActive(Boolean.TRUE);
user.setNickName(getPrincipalAttributeValue(p, "nickName"));
user.setDisplayName(getPrincipalAttributeValue(p, "displayName"));
val name = new Name(getPrincipalAttributeValue(p, "formattedName"), getPrincipalAttributeValue(p, "familyName"), getPrincipalAttributeValue(p, "middleName"), getPrincipalAttributeValue(p, "givenName"), getPrincipalAttributeValue(p, "honorificPrefix"), getPrincipalAttributeValue(p, "honorificSuffix"));
user.setName(name);
val entry = new Entry(getPrincipalAttributeValue(p, "mail"), "primary");
user.setEmails(CollectionUtils.wrap(entry));
val entry2 = new Entry(getPrincipalAttributeValue(p, "phoneNumber"), "primary");
user.setPhoneNumbers(CollectionUtils.wrap(entry2));
}
Aggregations