use of com.sun.enterprise.deployment.runtime.common.PrincipalNameDescriptor in project Payara by payara.
the class EjbBundleRuntimeNode method addDescriptor.
@Override
public void addDescriptor(Object newDescriptor) {
if (newDescriptor instanceof SecurityRoleMapping) {
SecurityRoleMapping roleMap = (SecurityRoleMapping) newDescriptor;
descriptor.addSecurityRoleMapping(roleMap);
Application app = descriptor.getApplication();
if (app != null) {
Role role = new Role(roleMap.getRoleName());
SecurityRoleMapper rm = app.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()));
}
}
}
use of com.sun.enterprise.deployment.runtime.common.PrincipalNameDescriptor in project Payara by payara.
the class SecurityRoleMappingNode method writeDescriptor.
/**
* write the descriptor class to a DOM tree and return it
*
* @param parent node for the DOM tree
* @param node name
* @param the descriptor to write
* @return the DOM tree top node
*/
public Node writeDescriptor(Node parent, String nodeName, SecurityRoleMapping descriptor) {
Node roleMapping = appendChild(parent, nodeName);
// role-name
appendTextChild(roleMapping, RuntimeTagNames.ROLE_NAME, descriptor.getRoleName());
// principal-name+
PrincipalNameNode principal = new PrincipalNameNode();
List<PrincipalNameDescriptor> principals = descriptor.getPrincipalNames();
for (int i = 0; i < principals.size(); i++) {
principal.writeDescriptor(roleMapping, RuntimeTagNames.PRINCIPAL_NAME, principals.get(i));
}
// group+
List<String> groups = descriptor.getGroupNames();
for (int i = 0; i < groups.size(); i++) {
appendTextChild(roleMapping, RuntimeTagNames.GROUP_NAME, groups.get(i));
}
return roleMapping;
}
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 SecurityRoleMappingNode method writeDescriptor.
/**
* write the descriptor class to a DOM tree and return it
*
* @param parent node for the DOM tree
* @param node name
* @param the descriptor to write
* @return the DOM tree top node
*/
public Node writeDescriptor(Node parent, String nodeName, SecurityRoleMapping descriptor) {
Node roleMapping = appendChild(parent, nodeName);
// role-name
appendTextChild(roleMapping, RuntimeTagNames.ROLE_NAME, descriptor.getRoleName());
// principal-name+
PrincipalNameNode principal = new PrincipalNameNode();
List<PrincipalNameDescriptor> principals = descriptor.getPrincipalNames();
for (int i = 0; i < principals.size(); i++) {
principal.writeDescriptor(roleMapping, RuntimeTagNames.PRINCIPAL_NAME, principals.get(i));
}
// group+
List<String> groups = descriptor.getGroupNames();
for (int i = 0; i < groups.size(); i++) {
appendTextChild(roleMapping, RuntimeTagNames.GROUP_NAME, groups.get(i));
}
return roleMapping;
}
use of com.sun.enterprise.deployment.runtime.common.PrincipalNameDescriptor in project Payara by payara.
the class WebBundleRuntimeNode method addDescriptor.
/**
* Adds a new DOL descriptor instance to the descriptor instance associated with
* this XMLNode
*
* @param newDescriptor the new descriptor
*/
@Override
public void addDescriptor(Object newDescriptor) {
SunWebAppImpl sunWebApp = (SunWebAppImpl) descriptor.getSunDescriptor();
if (newDescriptor instanceof WebComponentDescriptor) {
WebComponentDescriptor servlet = (WebComponentDescriptor) newDescriptor;
// for backward compatibility with s1as schema2beans generated desc
Servlet s1descriptor = new Servlet();
s1descriptor.setServletName(servlet.getCanonicalName());
if (servlet.getRunAsIdentity() != null) {
s1descriptor.setPrincipalName(servlet.getRunAsIdentity().getPrincipal());
}
sunWebApp.addServlet(s1descriptor);
} else if (newDescriptor instanceof ServiceReferenceDescriptor) {
descriptor.addServiceReferenceDescriptor((ServiceReferenceDescriptor) newDescriptor);
} else if (newDescriptor instanceof SecurityRoleMapping) {
SecurityRoleMapping srm = (SecurityRoleMapping) newDescriptor;
sunWebApp.addSecurityRoleMapping(srm);
// store it in the application using pure DOL descriptors...
Application app = descriptor.getApplication();
if (app != null) {
Role role = new Role(srm.getRoleName());
SecurityRoleMapper rm = app.getRoleMapper();
if (rm != null) {
List<PrincipalNameDescriptor> principals = srm.getPrincipalNames();
for (int i = 0; i < principals.size(); i++) {
rm.assignRole(principals.get(i).getPrincipal(), role, descriptor);
}
List<String> groups = srm.getGroupNames();
for (int i = 0; i < groups.size(); i++) {
rm.assignRole(new Group(groups.get(i)), role, descriptor);
}
}
}
} else if (newDescriptor instanceof IdempotentUrlPattern) {
sunWebApp.addIdempotentUrlPattern((IdempotentUrlPattern) newDescriptor);
} else if (newDescriptor instanceof SessionConfig) {
sunWebApp.setSessionConfig((SessionConfig) newDescriptor);
} else if (newDescriptor instanceof Cache) {
sunWebApp.setCache((Cache) newDescriptor);
} else if (newDescriptor instanceof ClassLoader) {
sunWebApp.setClassLoader((ClassLoader) newDescriptor);
} else if (newDescriptor instanceof JspConfig) {
sunWebApp.setJspConfig((JspConfig) newDescriptor);
} else if (newDescriptor instanceof LocaleCharsetInfo) {
sunWebApp.setLocaleCharsetInfo((LocaleCharsetInfo) newDescriptor);
} else if (newDescriptor instanceof WebProperty) {
sunWebApp.addWebProperty((WebProperty) newDescriptor);
} else if (newDescriptor instanceof Valve) {
sunWebApp.addValve((Valve) newDescriptor);
} else
super.addDescriptor(descriptor);
}
Aggregations