Package org.apache.geronimo.st.v11.ui.sections

Examples of org.apache.geronimo.st.v11.ui.sections.EjbLocalRefSection


    public String getDescription() {
        return CommonMessages.editorSectionExtModuleDescription;
    }

    public Wizard getWizard() {
        return new ExtModuleWizard(this);
    }
View Full Code Here


    return CommonMessages.editorGBeanRefDescription;
  }

    @Override
  public Wizard getWizard() {
    return new GBeanRefWizard(this);
  }
View Full Code Here

        return CommonMessages.editorSectionGBeanDescription;
    }

    @Override
    public Wizard getWizard() {
        return new GBeanWizard(this);
    }
View Full Code Here

    public String getDescription() {
        return CommonMessages.editorSectionMessageDestDescription;
    }

    public Wizard getWizard() {
        return new MessageDestWizard(this);
    }
View Full Code Here

    public String getDescription() {
        return CommonMessages.editorSectionModuleDescription;
    }

    public Wizard getWizard() {
        return new ModuleWizard(this);
    }
View Full Code Here

    public String getDescription() {
        return CommonMessages.editorResourceEnvRefDescription;
    }

    public Wizard getWizard() {
        return new ResourceEnvRefWizard(this);
    }
View Full Code Here

    public String getDescription() {
        return CommonMessages.editorResourceRefDescription;
    }

    public Wizard getWizard() {
        return new ResourceRefWizard(this);
    }
View Full Code Here

        return CommonMessages.editorSectionSecurityRolesDescription;
    }

    @Override
    public Wizard getWizard() {
        return new SecurityRoleMappingWizard(this);
    }
View Full Code Here

        return CommonMessages.editorServiceRefDescription;
    }

    @Override
    public Wizard getWizard() {
        return new ServiceRefWizard(this);
    }
View Full Code Here

            WebApp webapp = (WebApp)((AbstractGeronimoDeploymentPlanEditor) getEditor()).getDeploymentPlan().getValue();
            managedForm.addPart(new EjbRefSection(getDeploymentPlan(), body, toolkit, getStyle(), webapp.getEjbRef()));
            managedForm.addPart(new ResourceRefSection(getDeploymentPlan(), body, toolkit, getStyle(), webapp.getResourceRef()));
            managedForm.addPart(new ServiceRefSection(getDeploymentPlan(), body, toolkit, getStyle(), webapp.getServiceRef()));
            managedForm.addPart(new ResourceEnvRefSection(getDeploymentPlan(), body, toolkit, getStyle(), webapp.getResourceEnvRef()));
            managedForm.addPart(new EjbLocalRefSection(getDeploymentPlan(), body, toolkit, getStyle(), webapp.getEjbLocalRef()));
            managedForm.addPart(new GBeanRefSection(getDeploymentPlan(), body, toolkit, getStyle(), webapp.getAbstractNamingEntry()));
            managedForm.addPart(new PersContextRefSection(getDeploymentPlan(), body, toolkit, getStyle(), webapp.getAbstractNamingEntry()));
            managedForm.addPart(new PersUnitRefSection(getDeploymentPlan(), body, toolkit, getStyle(), webapp.getAbstractNamingEntry()));
            managedForm.addPart(new MessageDestSection(getDeploymentPlan(), body, toolkit, getStyle(), webapp.getMessageDestination()));
        }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.st.v11.ui.sections.EjbLocalRefSection

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.