com.jinfonet.designer.deployment.api
Interface DeploymentWizard


public interface DeploymentWizard

DeploymentWizard is an interface that is used to implement customized deploy wizard.


Method Summary
 void deploy(java.awt.Frame frame, java.lang.String catFullPathName, java.lang.String reporthome)
          The method is invoked when you click menu want to deploy report to server when Publish to Server in JReport Designer, it will first check if there is deployWizardFactory in the ReportOption, and will then try to create new instance by the class name.
 

Method Detail

deploy

void deploy(java.awt.Frame frame,
            java.lang.String catFullPathName,
            java.lang.String reporthome)
The method is invoked when you click menu want to deploy report to server when Publish to Server in JReport Designer, it will first check if there is deployWizardFactory in the ReportOption, and will then try to create new instance by the class name. If the class of the customized deployWizard has been successfully loaded, its wizard will be shown. Otherwise, the default publish wizard will be shown. you have customized deploy wizard.

Parameters:
frame - The main frame of this DeployWizard dialog.
catFullPathName - the full name of the catalog file.
reporthome - the home path of JReport applications.