1 27 package org.objectweb.jonas_rar.deployment.rules; 28 29 import org.apache.commons.digester.Digester; 30 import org.objectweb.jonas_lib.deployment.rules.JRuleSetBase; 31 32 37 38 public class AuthenticationMechanismRuleSet extends JRuleSetBase { 39 40 44 public AuthenticationMechanismRuleSet(String prefix) { 45 super(prefix); 46 } 47 51 52 public void addRuleInstances(Digester digester) { 53 digester.addObjectCreate(prefix + "authentication-mechanism", 54 "org.objectweb.jonas_rar.deployment.xml.AuthenticationMechanism"); 55 digester.addSetNext(prefix + "authentication-mechanism", 56 "addAuthenticationMechanism", 57 "org.objectweb.jonas_rar.deployment.xml.AuthenticationMechanism"); 58 digester.addCallMethod(prefix + "authentication-mechanism/description", 59 "addDescription", 0); 60 digester.addCallMethod(prefix + "authentication-mechanism/authentication-mechanism-type", 61 "setAuthenticationMechanismType", 0); 62 digester.addCallMethod(prefix + "authentication-mechanism/credential-interface", 63 "setCredentialInterface", 0); 64 } 65 } 66 | Popular Tags |