Examples of WebModel


Examples of com.subgraph.vega.internal.model.web.WebModel

      final String databasePath = databaseFile.getAbsolutePath();
      final boolean exists = databaseFile.exists(); // possible race condition 
      final ObjectContainer db = configurationFactory.openContainer(databasePath);
      loadModelVersion(db, !exists);
      tagModel = new TagModel(db);
      webModel = new WebModel(db);
      variableModel = new VariableModel(db);
      httpMacroModel = new HttpMacroModel(db);
      identityModel = new IdentityModel(db);
      requestLog = new RequestLog(db);
      scanAlerts = new ScanAlertRepository(db, xmlRepository);
View Full Code Here

Examples of org.jboss.internal.soa.esb.listeners.war.WebModel

    public File build() throws ConfigurationException, DeploymentException
    {
        File war = null;
        WebDeploymentArchive webDeployment = new WebDeploymentArchive(getESBWarFileName());
        WebModel webModel = webDeployment.getWebModel();

        // Set the global security domain and global security method.
        // These setting are shared for all http-providers and EBWSs
        // in a jboss-esb.xml file.
        webModel.setAuthDomain(model.getAuthDomain());
        webModel.setAuthMethod(model.getAuthMethod());

        // Add the EBWS components...
        createWebserviceWars(webDeployment);

        // Add the web deployments info to the WebModel...
        ModelUtil.updateWebModel(deploymentName, ModelUtil.getListenerGroups(model), webModel);

        // Add a sub-deloyment for the web model...
        this.servlets = webModel.getServlets();
        if(!servlets.isEmpty()) {
           
            // Finalize the webDeployment...
            webDeployment.finalizeArchive();
View Full Code Here

Examples of org.jboss.internal.soa.esb.listeners.war.WebModel

    public File build() throws ConfigurationException, DeploymentException
    {
        File war = null;
        WebDeploymentArchive webDeployment = new WebDeploymentArchive(getESBDeploymentName(), getESBWarFileName());
        WebModel webModel = webDeployment.getWebModel();

        // Set the global security domain and global security method.
        // These setting are shared for all http-providers and EBWSs
        // in a jboss-esb.xml file.
        webModel.setAuthDomain(model.getAuthDomain());
        webModel.setAuthMethod(model.getAuthMethod());

        // Add the EBWS components...
        createWebserviceWars(webDeployment);

        // Add the web deployments info to the WebModel...
        ModelUtil.updateWebModel(deploymentName, ModelUtil.getListenerGroups(model), webModel);

        // Add a sub-deloyment for the web model...
        this.servlets = webModel.getServlets();
        if(!servlets.isEmpty()) {
           
            // Finalize the webDeployment...
            webDeployment.finalizeArchive();
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.