use of org.apache.directory.fortress.core.model.FortRequest in project directory-fortress-core by apache.
the class AdminMgrRestImpl method addDsdRoleMember.
/**
* {@inheritDoc}
*/
@Override
public SDSet addDsdRoleMember(SDSet dsdSet, Role role) throws SecurityException {
VUtil.assertNotNull(dsdSet, GlobalErrIds.SSD_NULL, CLS_NM + ".addDsdRoleMember");
VUtil.assertNotNull(role, GlobalErrIds.ROLE_NULL, CLS_NM + ".addDsdRoleMember");
SDSet retSet;
FortRequest request = RestUtils.getRequest(this.contextId);
request.setEntity(dsdSet);
request.setValue(role.getName());
if (this.adminSess != null) {
request.setSession(adminSess);
}
String szRequest = RestUtils.marshal(request);
String szResponse = RestUtils.getInstance().post(szRequest, HttpIds.DSD_ADD_MEMBER);
FortResponse response = RestUtils.unmarshall(szResponse);
if (response.getErrorCode() == 0) {
retSet = (SDSet) response.getEntity();
} else {
throw new SecurityException(response.getErrorCode(), response.getErrorMessage());
}
return retSet;
}
use of org.apache.directory.fortress.core.model.FortRequest in project directory-fortress-core by apache.
the class AdminMgrRestImpl method removeRoleConstraint.
/**
* {@inheritDoc}
*/
@Override
public void removeRoleConstraint(UserRole uRole, RoleConstraint roleConstraint) throws SecurityException {
VUtil.assertNotNull(uRole, GlobalErrIds.URLE_NULL, CLS_NM + ".removeRoleConstraint");
VUtil.assertNotNull(roleConstraint, GlobalErrIds.RCON_NULL, CLS_NM + ".removeRoleConstraint");
FortRequest request = RestUtils.getRequest(this.contextId);
request.setEntity(uRole);
request.setEntity2(roleConstraint);
if (this.adminSess != null) {
request.setSession(adminSess);
}
String szRequest = RestUtils.marshal(request);
String szResponse = RestUtils.getInstance().post(szRequest, HttpIds.ROLE_DELETE_CONSTRAINT);
FortResponse response = RestUtils.unmarshall(szResponse);
if (response.getErrorCode() != 0) {
throw new SecurityException(response.getErrorCode(), response.getErrorMessage());
}
}
use of org.apache.directory.fortress.core.model.FortRequest in project directory-fortress-core by apache.
the class PwPolicyMgrRestImpl method updateUserPolicy.
/**
* {@inheritDoc}
*/
@Override
public void updateUserPolicy(String userId, String name) throws SecurityException {
String methodName = "updateUserPolicy";
VUtil.assertNotNullOrEmpty(userId, GlobalErrIds.USER_NULL, CLS_NM + "." + methodName);
VUtil.assertNotNullOrEmpty(name, GlobalErrIds.PSWD_NAME_NULL, CLS_NM + "." + methodName);
FortRequest request = RestUtils.getRequest(this.contextId);
request.setEntity(new PwPolicy(name));
request.setValue(userId);
if (this.adminSess != null) {
request.setSession(adminSess);
}
String szRequest = RestUtils.marshal(request);
String szResponse = RestUtils.getInstance().post(szRequest, HttpIds.PSWD_USER_ADD);
FortResponse response = RestUtils.unmarshall(szResponse);
if (response.getErrorCode() != 0) {
throw new SecurityException(response.getErrorCode(), response.getErrorMessage());
}
}
use of org.apache.directory.fortress.core.model.FortRequest in project directory-fortress-core by apache.
the class PwPolicyMgrRestImpl method search.
/**
* {@inheritDoc}
*/
@Override
public List<PwPolicy> search(String searchVal) throws SecurityException {
VUtil.assertNotNull(searchVal, GlobalErrIds.PSWD_NAME_NULL, CLS_NM + ".search");
List<PwPolicy> retPolicies;
FortRequest request = RestUtils.getRequest(this.contextId);
request.setEntity(new PwPolicy(searchVal));
if (this.adminSess != null) {
request.setSession(adminSess);
}
String szRequest = RestUtils.marshal(request);
String szResponse = RestUtils.getInstance().post(szRequest, HttpIds.PSWD_SEARCH);
FortResponse response = RestUtils.unmarshall(szResponse);
if (response.getErrorCode() == 0) {
retPolicies = response.getEntities();
} else {
throw new SecurityException(response.getErrorCode(), response.getErrorMessage());
}
return retPolicies;
}
use of org.apache.directory.fortress.core.model.FortRequest in project directory-fortress-core by apache.
the class PwPolicyMgrRestImpl method read.
/**
* {@inheritDoc}
*/
@Override
public PwPolicy read(String name) throws SecurityException {
VUtil.assertNotNullOrEmpty(name, GlobalErrIds.PSWD_NAME_NULL, CLS_NM + ".read");
PwPolicy retPolicy;
FortRequest request = RestUtils.getRequest(this.contextId);
request.setEntity(new PwPolicy(name));
if (this.adminSess != null) {
request.setSession(adminSess);
}
String szRequest = RestUtils.marshal(request);
String szResponse = RestUtils.getInstance().post(szRequest, HttpIds.PSWD_READ);
FortResponse response = RestUtils.unmarshall(szResponse);
if (response.getErrorCode() == 0) {
retPolicy = (PwPolicy) response.getEntity();
} else {
throw new SecurityException(response.getErrorCode(), response.getErrorMessage());
}
return retPolicy;
}
Aggregations