use of com.woorea.openstack.keystone.v3.model.Authentication.Identity.Password.User.Domain in project so by onap.
the class AuthenticationMethodFactory method getAuthenticationForV3ByName.
public final com.woorea.openstack.keystone.v3.model.Authentication getAuthenticationForV3ByName(CloudIdentity cloudIdentity, String name) {
Identity identity = new Identity();
Password password = new Password();
User user = new User();
Domain userDomain = new Domain();
Scope scope = new Scope();
Project project = new Project();
Project.Domain projectDomain = new Project.Domain();
userDomain.setName(cloudIdentity.getUserDomainName());
projectDomain.setName(cloudIdentity.getAdminProjectDomainName());
user.setName(cloudIdentity.getMsoId());
user.setPassword(CryptoUtils.decryptCloudConfigPassword(cloudIdentity.getMsoPass()));
user.setDomain(userDomain);
password.setUser(user);
project.setDomain(projectDomain);
project.setName(name);
scope.setProject(project);
identity.setPassword(password);
identity.setMethods(Collections.singletonList("password"));
com.woorea.openstack.keystone.v3.model.Authentication v3Auth = new com.woorea.openstack.keystone.v3.model.Authentication();
v3Auth.setIdentity(identity);
v3Auth.setScope(scope);
return v3Auth;
}
use of com.woorea.openstack.keystone.v3.model.Authentication.Identity.Password.User.Domain in project ovirt-engine by oVirt.
the class KeystoneV3TokenProviderTest method verifyAuthentication.
private void verifyAuthentication(boolean hasProject) {
verify(tokenProvider).requestToken(authenticationCaptor.capture());
Authentication authentication = authenticationCaptor.getValue();
assertThat(authentication, notNullValue());
Authentication.Identity.Password.User user = authentication.getIdentity().getPassword().getUser();
assertThat(user, notNullValue());
assertThat(user.getPassword(), is(PASSWORD));
assertThat(user.getName(), is(USERNAME));
Authentication.Identity.Password.User.Domain domain = user.getDomain();
assertThat(domain, notNullValue());
assertThat(domain.getName(), is(USER_DOMAIN_NAME));
if (hasProject) {
Authentication.Scope.Project project = authentication.getScope().getProject();
assertThat(project, notNullValue());
assertThat(project.getName(), is(PROJECT_NAME));
Authentication.Scope.Project.Domain projectDomain = project.getDomain();
assertThat(projectDomain, notNullValue());
assertThat(projectDomain.getName(), is(PROJECT_DOMAIN_NAME));
} else {
assertNull(authentication.getScope());
}
}
use of com.woorea.openstack.keystone.v3.model.Authentication.Identity.Password.User.Domain in project so by onap.
the class AuthenticationMethodFactory method getAuthenticationForV3.
public final com.woorea.openstack.keystone.v3.model.Authentication getAuthenticationForV3(CloudIdentity cloudIdentity, String tenantId) {
Identity identity = new Identity();
Password password = new Password();
User user = new User();
Domain userDomain = new Domain();
Scope scope = new Scope();
Project project = new Project();
Project.Domain projectDomain = new Project.Domain();
userDomain.setName(cloudIdentity.getUserDomainName());
projectDomain.setName(cloudIdentity.getProjectDomainName());
user.setName(cloudIdentity.getMsoId());
user.setPassword(CryptoUtils.decryptCloudConfigPassword(cloudIdentity.getMsoPass()));
user.setDomain(userDomain);
password.setUser(user);
project.setDomain(projectDomain);
project.setId(tenantId);
scope.setProject(project);
identity.setPassword(password);
identity.setMethods(Collections.singletonList("password"));
com.woorea.openstack.keystone.v3.model.Authentication v3Auth = new com.woorea.openstack.keystone.v3.model.Authentication();
v3Auth.setIdentity(identity);
v3Auth.setScope(scope);
return v3Auth;
}
Aggregations