KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > axis2 > wsdl > codegen > CommandLineOptionConstants


1 /*
2  * Copyright 2001-2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16
17 package org.apache.axis2.wsdl.codegen;
18
19 /**
20  * @author chathura@opensource.lk
21  *
22  */

23 public interface CommandLineOptionConstants {
24     
25     public static final String JavaDoc SOLE_INPUT = "SOLE_INPUT";
26
27     public static final String JavaDoc WSDL_LOCATION_URI_OPTION = "uri";
28     public static final String JavaDoc OUTPUT_LOCATION_OPTION = "o";
29     public static final String JavaDoc SERVER_SIDE_CODE_OPTION = "ss";
30     public static final String JavaDoc GENERATE_SERVICE_DESCRIPTION_OPTION = "sd";
31     public static final String JavaDoc CODEGEN_ASYNC_ONLY_OPTION = "a";
32     public static final String JavaDoc CODEGEN_SYNC_ONLY_OPTION = "s";
33     public static final String JavaDoc PACKAGE_OPTION = "p";
34     public static final String JavaDoc STUB_LANGUAGE_OPTION = "l";
35     public static final String JavaDoc GENERATE_TEST_CASE_OPTION = "t";
36
37
38     public static final String JavaDoc INVALID_OPTION= "INVALID_OPTION";
39
40     public interface LanguageNames{
41            public static final String JavaDoc JAVA="java";
42            public static final String JavaDoc C_SHARP="cs";
43            public static final String JavaDoc VB_DOT_NET="vb";
44            public static final String JavaDoc C_PLUS_PLUS="cpp";
45
46     }
47 }
48
Popular Tags