if(processAdvancedSettings) {
String parameterName = "security" + "." + "credentialStoreRef";
if (map.containsKey(parameterName)) {
String patternString = request.getParameter(parameterName);
String[] elements = patternString.split("/", 6);
PatternType pattern = PatternType.Factory.newInstance();
pattern.setGroupId(elements[0]);
pattern.setArtifactId(elements[1]);
//pattern.setVersion(elements[2]);
//pattern.setType(elements[3]);
//pattern.setModule(elements[4]);
pattern.setName(elements[5]);
security.setCredentialStoreRef(pattern);
dependencies.add(JSR88_Util.getDependencyString(patternString));
}
String prefix = "security" + "." + "defaultSubject" + ".";
if (map.containsKey(prefix + "realm")) {