KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > jaspersoft > jasperserver > war > wizard > WizardScreenConstants


1 /*
2  * Copyright (C) 2006 JasperSoft http://www.jaspersoft.com
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed WITHOUT ANY WARRANTY; and without the
10  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11  * See the GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, see http://www.gnu.org/licenses/gpl.txt
15  * or write to:
16  *
17  * Free Software Foundation, Inc.,
18  * 59 Temple Place - Suite 330,
19  * Boston, MA USA 02111-1307
20  */

21 package com.jaspersoft.jasperserver.war.wizard;
22
23 import java.util.HashMap JavaDoc;
24 import java.util.Map JavaDoc;
25
26 import com.jaspersoft.jasperserver.war.JasperServerConstants;
27
28 public interface WizardScreenConstants extends JasperServerConstants{
29     
30     String JavaDoc homePageUrl = BASE_URL+"/jasperserver/home.html";
31     String JavaDoc createPageLink = "[CREATE REPORT]";
32     String JavaDoc repNameFormText = "fmCRPopNLD";
33     String JavaDoc formText = "fmCRPopJrxml_1";
34     String JavaDoc listPageFormText = "fmCRExtRsrCh";
35     String JavaDoc errorFormText = "fmJsErrPage";
36     String JavaDoc sourceSellFormText = "fmCRContQd";
37     String JavaDoc dataSrcPageFormText = "fmCRChTyp";
38     String JavaDoc propertyPageFormText = "fmJNDIProps";
39     String JavaDoc descriotionFormText = "fmJNDINaming";
40     String JavaDoc resDescriptiomFormText = "aqRsrRsrNm";
41     String JavaDoc ResourceFormText = "fmCRExtRsrCh";
42     String JavaDoc descriptionFormText = "fmCRContNam";
43     String JavaDoc datadescFormText = "fmCRContLov";
44     String JavaDoc dataTypeFormText = "fmDataType";
45     String JavaDoc testFormText = "fmCRValidConf";
46     String JavaDoc testViewFormText = "fmCRTstVw";
47     String JavaDoc publishFormText = "fmCRWCrConf";
48     String JavaDoc floderSelFormText = "fmCRUsrRepoOpt";
49     String JavaDoc nameText = "Name:";
50     String JavaDoc pageText = "Report Wizard - Naming";
51     String JavaDoc reportListPageText = "Report Wizard - Resources List";
52     String JavaDoc locateInputControlText = "Locate Input Control";
53     String JavaDoc reportInputControlText = "Report Wizard - Input Control";
54     String JavaDoc reportFileResPageText = "Report Wizard - File Resource";
55     String JavaDoc fileResourcePageText = "File Resource";
56     String JavaDoc createReportPageText = "CREATE REPORT WIZARD";
57     String JavaDoc addControlPageText = "newFile";
58     String JavaDoc resourceFileText = "ResourceFile";
59     String JavaDoc fileAddedText = "Added";
60     String JavaDoc errMsgServiceNameText1 = "Please enter the JNDI name";
61     String JavaDoc errMsgText2= "Please enter the datasource Name";
62     String JavaDoc errorMsgText3 = "Please enter an authorised username";
63     String JavaDoc errorMsgRepPageText1 = "Report name must not be empty";
64     String JavaDoc errorMsgRepPageText2 = "Report label must not be empty";
65     String JavaDoc errorMsgLoadPageText = "Select a valid JRXML file";
66     String JavaDoc errMsgInvalidFileText = "Error Message";
67     String JavaDoc errMsgServiceNameText = "Please enter the service name";
68     String JavaDoc errMsgDescriptionText2 = "Please enter the datasource label";
69     String JavaDoc successJNDIMsgText = "The JNDI Service entry was successfully created.";
70     String JavaDoc successLoadMsgText = "successful";
71     String JavaDoc validationPageText = "The report was successfully validated.";
72     String JavaDoc testPageText = "Test view of the report will be here";
73     String JavaDoc publishPageText = "You may now Publish your Report.";
74     String JavaDoc loadPageText1 = "Report Wizard - Main JRXML";
75     String JavaDoc dataSrcPageText1 = "Report Wizard - Data Source Type";
76     String JavaDoc extResourcePageText1 = "Are there additional external Resources the report needs";
77     String JavaDoc inputControlPageText2 = "Does the report need any Input Controls ?";
78     String JavaDoc testPageText1 = "Below is the list of Report Resources.";
79     String JavaDoc folderSelPageText = "Choose a repository folder to Publish the Report into:";
80     String JavaDoc publishCnfrmPageText = "The Report was published successfully to";
81     String JavaDoc sourceSelectionPageText = "Report Wizard - Locate Data Source";
82     String JavaDoc cancelBtnText = "_eventId_Cancel";
83     String JavaDoc backBtnText = "_eventId_Back";
84     String JavaDoc nextBtnText = "_eventId_Next";
85     String JavaDoc savetBtnText = "_eventId_save";
86     String JavaDoc srartAgnBtnText = "_eventId_Cancel";
87     String JavaDoc viewRepBtnText = "_eventId_TestView";
88     String JavaDoc publishRepBtnText = "_eventId_Publish";
89     String JavaDoc saveNewBtnText = "_eventId_NewFolder";
90     String JavaDoc saveSelectedBtnText = "_eventId_Save";
91     String JavaDoc addCtrlBtnText = "_eventId_AddControl";
92     String JavaDoc addResourceBtnText = "_eventId_AddResource";
93     String JavaDoc finishButtonText = "_eventId_Close";
94     String JavaDoc fileFieldText = "data";
95     String JavaDoc ViewReportPageText = "Repository Browser";
96     String JavaDoc name = "testName";
97     String JavaDoc label = "testLabel";
98     String JavaDoc serviceName = "testServiceName";
99     String JavaDoc driver = "com.test";
100     String JavaDoc url = "http://localhost:8080";
101     String JavaDoc username = "userName";
102     String JavaDoc password = "Password";
103      String JavaDoc repositoryLink = "REPOSITORY";
104      String JavaDoc repositoryPageText1 = "Repository Browser";
105      String JavaDoc repositoryPageText2 = "Path:";
106      String JavaDoc dataTypePageText = "Data Type";
107      String JavaDoc rootLink = "[root]";
108      String JavaDoc repFormText = "frm";
109      String JavaDoc addNewBtnText = "_eventId_Add";
110      String JavaDoc repositoryUnitValueText = "com.jaspersoft.jasperserver.api.metadata.jasperreports.domain.ReportUnit";
111     
112         
113     Map JavaDoc resourceMap = new HashMap JavaDoc(6);
114     
115 }
Popular Tags