public void serialize() {
initConfigs.serialize(System.out);
}
private void doBehaviorLoad() throws BehaviorLoadFault, AssertionLoadFault {
AbstractSecurityAssertion assertion;
assertion = getAssertion(getCurrentAssertionName(), getCurrentAssertionParam());
if (assertion != null) {
PolicyBehavior temp = getBehavior(getCurrentBehaviorName(), assertion);
if (log.isDebugEnabled()) {
log.debug("Assertion found :" + getCurrentAssertionName() + " ; class:" + assertion.getClass().getName());
}
// System.out.println("Assertion found :"+getCurrentAssertionName()+" ; class:"+assertion.getClass().getName());
if (temp != null) {
currentAssertion = assertion;
currentBehavior = temp;