Examples of validate()


Examples of com.sun.enterprise.deployment.archivist.Archivist.validate()

                // let's check for optional dependencies
                if (!archivist.performOptionalPkgDependenciesCheck(in)) {
                    throw new IASDeploymentException(localStrings.getString("enterprise.deployment.backend.archive_opt_dep_not_satisfied", new Object[] {in.getArchiveUri()}));
                }
                               
    archivist.validate(ejbClassLoader);
   
    if (!application.getWebServiceDescriptors().isEmpty()) {
        ModuleContentLinker visitor = new ModuleContentLinker(in);
        application.visit((com.sun.enterprise.deployment.util.ApplicationVisitor) visitor);
    }     
View Full Code Here

Examples of com.sun.enterprise.tools.common.dd.EjbRef.validate()

    boolean restrictionFailure = false;
    // Validating property ejbRef
    for (int _index = 0; _index < sizeEjbRef(); ++_index) {
      EjbRef element = getEjbRef(_index);
      if (element != null) {
        element.validate();
      }
    }
    // Validating property resourceRef
    for (int _index = 0; _index < sizeResourceRef(); ++_index) {
      ResourceRef element = getResourceRef(_index);
View Full Code Here

Examples of com.sun.enterprise.tools.common.dd.MessageDestination.validate()

    }
    // Validating property messageDestination
    for (int _index = 0; _index < sizeMessageDestination(); ++_index) {
      MessageDestination element = getMessageDestination(_index);
      if (element != null) {
        element.validate();
      }
    }
    // Validating property webserviceDescription
    for (int _index = 0; _index < sizeWebserviceDescription();
      ++_index) {
View Full Code Here

Examples of com.sun.enterprise.tools.common.dd.ResourceEnvRef.validate()

    }
    // Validating property resourceEnvRef
    for (int _index = 0; _index < sizeResourceEnvRef(); ++_index) {
      ResourceEnvRef element = getResourceEnvRef(_index);
      if (element != null) {
        element.validate();
      }
    }
    // Validating property serviceRef
    for (int _index = 0; _index < sizeServiceRef(); ++_index) {
      ServiceRef element = getServiceRef(_index);
View Full Code Here

Examples of com.sun.enterprise.tools.common.dd.ResourceRef.validate()

    }
    // Validating property resourceRef
    for (int _index = 0; _index < sizeResourceRef(); ++_index) {
      ResourceRef element = getResourceRef(_index);
      if (element != null) {
        element.validate();
      }
    }
    // Validating property resourceEnvRef
    for (int _index = 0; _index < sizeResourceEnvRef(); ++_index) {
      ResourceEnvRef element = getResourceEnvRef(_index);
View Full Code Here

Examples of com.sun.enterprise.tools.common.dd.SecurityRoleMapping.validate()

    }
    // Validating property securityRoleMapping
    for (int _index = 0; _index < sizeSecurityRoleMapping(); ++_index) {
      SecurityRoleMapping element = getSecurityRoleMapping(_index);
      if (element != null) {
        element.validate();
      }
    }
    // Validating property realm
    if (getRealm() != null) {
    }
View Full Code Here

Examples of com.sun.enterprise.tools.common.dd.ServiceRef.validate()

    }
    // Validating property serviceRef
    for (int _index = 0; _index < sizeServiceRef(); ++_index) {
      ServiceRef element = getServiceRef(_index);
      if (element != null) {
        element.validate();
      }
    }
    // Validating property messageDestination
    for (int _index = 0; _index < sizeMessageDestination(); ++_index) {
      MessageDestination element = getMessageDestination(_index);
View Full Code Here

Examples of com.sun.enterprise.tools.common.dd.WebserviceDescription.validate()

    // Validating property webserviceDescription
    for (int _index = 0; _index < sizeWebserviceDescription();
      ++_index) {
      WebserviceDescription element = getWebserviceDescription(_index);
      if (element != null) {
        element.validate();
      }
    }
  }

  // Dump the content of this bean returning it as a String
View Full Code Here

Examples of com.sun.enterprise.tools.common.dd.WebserviceEndpoint.validate()

    }
    // Validating property webserviceEndpoint
    for (int _index = 0; _index < sizeWebserviceEndpoint(); ++_index) {
      WebserviceEndpoint element = getWebserviceEndpoint(_index);
      if (element != null) {
        element.validate();
      }
    }
  }

  // Dump the content of this bean returning it as a String
View Full Code Here

Examples of com.sun.enterprise.tools.common.validation.ValidationManager.validate()

            //file to getValidationManager()
            ValidationManager validationManager =
                validationManagerFactory.getValidationManager(validationFile);

            Collection failures =
                validationManager.validate(rootElement);

            Display display = new Display();
            display.text(failures);
            display.gui(failures);
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.