Examples of JSEArchiveMetaData


Examples of org.jboss.wsf.spi.metadata.j2ee.JSEArchiveMetaData

      dep.addAttachment(DeploymentInfo.class, di);
      dep.setProperty(EJBArchiveMetaDataAdapterEJB3.DEPLOYED_OBJECT, di.deployedObject);

      if (di.metaData instanceof WebMetaData)
      {
         JSEArchiveMetaData webMetaData = webMetaDataAdapter.buildUnifiedWebMetaData(dep, di);
         if (webMetaData != null)
            dep.addAttachment(JSEArchiveMetaData.class, webMetaData);
        
         dep.setProperty("org.jboss.ws.webapp.url", getDeploymentURL(di));
      }
View Full Code Here

Examples of org.jboss.wsf.spi.metadata.j2ee.JSEArchiveMetaData

      }
     
      if (contextRoot == null)
         contextRoot = wmd.getContextRoot();
     
      JSEArchiveMetaData webMetaData = new JSEArchiveMetaData();
      webMetaData.setContextRoot(contextRoot);
      webMetaData.setServletMappings(wmd.getServletMappings());
      webMetaData.setServletClassNames(getServletClassMap(wmd));
      webMetaData.setConfigName(wmd.getConfigName());
      webMetaData.setConfigFile(wmd.getConfigFile());
      webMetaData.setSecurityDomain(wmd.getSecurityDomain());
      webMetaData.setPublishLocationAdapter(getPublishLocationAdpater(wmd));
      webMetaData.setSecurityMetaData(getSecurityMetaData(wmd.getSecurityContraints()));
     
      return webMetaData;
   }
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.