Package org.apache.axis.tool.service.bean

Examples of org.apache.axis.tool.service.bean.Page3Bean


    public void process(WizardBean bean) throws ProcessException,Exception{

        Page1Bean page1Bean = bean.getPage1bean();
        Page2Bean page2Bean = bean.getPage2bean();
        Page3Bean page3Bean = bean.getPage3bean();

        File serviceFile = null;
        File classFileFolder = null;
        File outputFolder =null;
        String outputFileName = null;
        boolean isServiceCreated = false;

        //see if the class file location is valid
        classFileFolder = new File(page1Bean.getFileLocation());
        if (!classFileFolder.exists()){
            throw new ProcessException("Specified Class file location is empty!!");
        }
        if (!classFileFolder.isDirectory()){
            throw new ProcessException("The class file location must be a folder!");
        }

         //see if the  service.xml file is valid
        if (page2Bean.isManual()){
            serviceFile = new File(page2Bean.getManualFileName());
            if (!serviceFile.exists()){
                throw new ProcessException("Specified Service XML file is missing!");
            }
        }else{
            ArrayList methodList = page2Bean.getSelectedMethodNames();
            if (methodList.isEmpty()){
                throw new ProcessException("There are no methods selected to generate the service!!");
            }
            serviceFile=new ServiceFileCreator().createServiceFile(page2Bean.getProviderClassName(),
                    page2Bean.getAutomaticClassName(),
                    page2Bean.getSelectedMethodNames());//create the file here
            isServiceCreated = true;
        }

        outputFolder = new File(page3Bean.getOutputFolderName());
        outputFileName = page3Bean.getOutputFileName();
        if (!outputFileName.toLowerCase().endsWith(".jar")){
            outputFileName = outputFileName + ".jar";
        }

        File tempFileFolder =null;
View Full Code Here


        init();
        if (bean.getPage3bean()!=null){
            this.myBean = bean.getPage3bean();
            setBeanValues();
        }else{
            this.myBean =  new Page3Bean();
            bean.setPage3bean(myBean);
        }
    }
View Full Code Here

         this.setErrorMessage(str);
         setPageComplete(str==null);
     }
    
     public Page3Bean getBean(){
         Page3Bean pageBean = new Page3Bean();
         pageBean.setOutputFolderName(this.outputFileLocationTextBox.getText().trim());
         pageBean.setOutputFileName(this.outputFileNameTextbox.getText().trim());
         return pageBean;
     }
View Full Code Here

        this.setErrorMessage(str);
        setPageComplete(str == null);
    }

    public Page3Bean getBean() {
        Page3Bean pageBean = new Page3Bean();
        pageBean.setOutputFolderName(
                this.outputFileLocationTextBox.getText().trim());
        pageBean.setOutputFileName(this.outputFileNameTextbox.getText().trim());
        return pageBean;
    }
View Full Code Here

TOP

Related Classes of org.apache.axis.tool.service.bean.Page3Bean

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.