newControllers.add(target.addService(SecurityManagementService.SERVICE_NAME, securityManagementService)
.addListener(verificationHandler)
.setInitialMode(ServiceController.Mode.ACTIVE).install());
// add subject factory service
final SubjectFactoryService subjectFactoryService = new SubjectFactoryService(SUBJECT_FACTORY);
newControllers.add(target.addService(SubjectFactoryService.SERVICE_NAME, subjectFactoryService)
.addDependency(SecurityManagementService.SERVICE_NAME, ISecurityManagement.class,
subjectFactoryService.getSecurityManagementInjector())
.addListener(verificationHandler)
.setInitialMode(ServiceController.Mode.ACTIVE).install());
// add jaas configuration service
Configuration loginConfig = XMLLoginConfigImpl.getInstance();