use of com.sun.enterprise.deployment.runtime.common.PrincipalNameDescriptor in project Payara by payara.
the class PrincipalNameNode method setElementValue.
/**
* receives notiification of the value for a particular tag
*
* @param element the xml element
* @param value it's associated value
*/
public void setElementValue(XMLElement element, String value) {
PrincipalNameDescriptor principal = (PrincipalNameDescriptor) getDescriptor();
if (RuntimeTagNames.PRINCIPAL_NAME.equals(element.getQName())) {
principal.setName(value);
Object rootDesc = getParentNode().getParentNode().getDescriptor();
if (rootDesc instanceof RootDeploymentDescriptor) {
principal.setClassLoader(((RootDeploymentDescriptor) rootDesc).getClassLoader());
}
} else
super.setElementValue(element, value);
}
use of com.sun.enterprise.deployment.runtime.common.PrincipalNameDescriptor in project Payara by payara.
the class ApplicationRuntimeNode method addDescriptor.
/**
* Adds a new DOL descriptor instance to the descriptor instance associated with
* this XMLNode
*
* @param newDescriptor the new descriptor
*/
public void addDescriptor(Object newDescriptor) {
if (newDescriptor instanceof SecurityRoleMapping) {
SecurityRoleMapping roleMap = (SecurityRoleMapping) newDescriptor;
if (descriptor != null && !descriptor.isVirtual()) {
descriptor.addSecurityRoleMapping(roleMap);
Role role = new Role(roleMap.getRoleName());
SecurityRoleMapper rm = descriptor.getRoleMapper();
if (rm != null) {
List<PrincipalNameDescriptor> principals = roleMap.getPrincipalNames();
for (int i = 0; i < principals.size(); i++) {
rm.assignRole(principals.get(i).getPrincipal(), role, descriptor);
}
List<String> groups = roleMap.getGroupNames();
for (int i = 0; i < groups.size(); i++) {
rm.assignRole(new Group(groups.get(i)), role, descriptor);
}
}
}
} else if (newDescriptor instanceof ResourcePropertyDescriptor) {
ResourcePropertyDescriptor desc = (ResourcePropertyDescriptor) newDescriptor;
if ("default-role-mapping".equals(desc.getName())) {
descriptor.setDefaultGroupPrincipalMapping(ConfigBeansUtilities.toBoolean(desc.getValue()));
}
}
}
Aggregations