*/
private void bindServices(LazyValidatorFactory factory, ServiceTarget serviceTarget, EEModuleDescription description, String componentName, ServiceName contextServiceName) {
final ServiceName validatorFactoryServiceName = ContextNames.serviceNameOfContext(description.getAppName(),description.getModuleName(),componentName,"java:comp/ValidatorFactory");
BinderService validatorFactoryBindingService = new BinderService("ValidatorFactory");
validatorFactoryBindingService.getManagedObjectInjector().inject(new ValueManagedObject(new ImmediateValue<Object>(factory)));
serviceTarget.addService(validatorFactoryServiceName, validatorFactoryBindingService)
.addDependency(contextServiceName, NamingStore.class, validatorFactoryBindingService.getNamingStoreInjector())
.install();
final ServiceName validatorServiceName = ContextNames.serviceNameOfContext(description.getAppName(),description.getModuleName(),componentName,"java:comp/Validator");