Package org.jboss.wsf.spi.deployment.Deployment

Examples of org.jboss.wsf.spi.deployment.Deployment.DeploymentType


      else
      {
         dep.setRootFile(new ResourceLoaderAdapter(unit.getClassLoader()));
      }
      dep.setRuntimeClassLoader(unit.getClassLoader());
      final DeploymentType deploymentType = ASHelper.getRequiredAttachment(unit, DeploymentType.class);
      dep.setType(deploymentType);

      return dep;
   }
View Full Code Here


    *
    * @param unit deployment unit
    */
   public void build(final DeploymentUnit unit)
   {
      final DeploymentType deploymentType = ASHelper.getOptionalAttachment(unit, DeploymentType.class);

      if (deploymentType != null)
      {
         WSDeploymentBuilder.builders.get(deploymentType).newDeploymentModel(unit);
      }
View Full Code Here

    * @param unit deployment unit
    * @return true if JAXRPC EJB deployment, false otherwise
    */
   public static boolean isJaxrpcEjbDeployment(final DeploymentUnit unit)
   {
      final DeploymentType deploymentType = ASHelper.getOptionalAttachment(unit, DeploymentType.class);

      return DeploymentType.JAXRPC_EJB21.equals(deploymentType);
   }
View Full Code Here

    * @param unit deployment unit
    * @return true if JAXRPC JSE deployment, false otherwise
    */
   public static boolean isJaxrpcJseDeployment(final DeploymentUnit unit)
   {
      final DeploymentType deploymentType = ASHelper.getOptionalAttachment(unit, DeploymentType.class);

      return DeploymentType.JAXRPC_JSE.equals(deploymentType);
   }
View Full Code Here

    * @param unit deployment unit
    * @return true if JAXWS EJB deployment, false otherwise
    */
   public static boolean isJaxwsEjbDeployment(final DeploymentUnit unit)
   {
      final DeploymentType deploymentType = ASHelper.getOptionalAttachment(unit, DeploymentType.class);

      return DeploymentType.JAXWS_EJB3.equals(deploymentType);
   }
View Full Code Here

    * @param unit deployment unit
    * @return true if JAXWS JSE deployment, false otherwise
    */
   public static boolean isJaxwsJseDeployment(final DeploymentUnit unit)
   {
      final DeploymentType deploymentType = ASHelper.getOptionalAttachment(unit, DeploymentType.class);

      return DeploymentType.JAXWS_JSE.equals(deploymentType);
   }
View Full Code Here

     *
     * @param unit deployment unit
     * @return true if JAXRPC EJB deployment, false otherwise
     */
    public static boolean isJaxrpcEjbDeployment(final DeploymentUnit unit) {
        final DeploymentType deploymentType = ASHelper.getOptionalAttachment(unit, WSAttachmentKeys.DEPLOYMENT_TYPE_KEY);

        return DeploymentType.JAXRPC_EJB21.equals(deploymentType);
    }
View Full Code Here

     *
     * @param unit deployment unit
     * @return true if JAXRPC JSE deployment, false otherwise
     */
    public static boolean isJaxrpcJseDeployment(final DeploymentUnit unit) {
        final DeploymentType deploymentType = ASHelper.getOptionalAttachment(unit, WSAttachmentKeys.DEPLOYMENT_TYPE_KEY);

        return DeploymentType.JAXRPC_JSE.equals(deploymentType);
    }
View Full Code Here

     *
     * @param unit deployment unit
     * @return true if JAXWS EJB deployment, false otherwise
     */
    public static boolean isJaxwsEjbDeployment(final DeploymentUnit unit) {
        final DeploymentType deploymentType = ASHelper.getOptionalAttachment(unit, WSAttachmentKeys.DEPLOYMENT_TYPE_KEY);

        return DeploymentType.JAXWS_EJB3.equals(deploymentType);
    }
View Full Code Here

     *
     * @param unit deployment unit
     * @return true if JAXWS JSE deployment, false otherwise
     */
    public static boolean isJaxwsJseDeployment(final DeploymentUnit unit) {
        final DeploymentType deploymentType = ASHelper.getOptionalAttachment(unit, WSAttachmentKeys.DEPLOYMENT_TYPE_KEY);

        return DeploymentType.JAXWS_JSE.equals(deploymentType);
    }
View Full Code Here

TOP

Related Classes of org.jboss.wsf.spi.deployment.Deployment.DeploymentType

Copyright © 2018 www.massapicom. 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.