407408409410411412413414
@Override protected org.jboss.jca.core.spi.security.SubjectFactory getSubjectFactory(String securityDomain) throws DeployException { if (securityDomain == null || securityDomain.trim().equals("")) { return null; } else { return new PicketBoxSubjectFactory(subjectFactory.getValue()); } }
598599600601602603604605