01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */
19: package org.apache.axis2.tool.service.eclipse.util;
20:
21: public interface SettingsConstants {
22: //#####################################################
23: static final String PREF_CLASS_FILE_LOCATION = "CLASS_FILE_LOCATION";
24: static final String PREF_FILTER_BY_CLASSES = "FILTER_BY_CLASSES";
25: //#####################################################
26: static final String PREF_SERVICE_XML_FILE = "SERVICE_XML";
27: static final String PREF_CHECK_AUTO_GEN_SERVICE_XML = "AUTO_GEN";
28: //#####################################################
29: static final String PREF_WSDL_FILE_NAME = "WSDL_FILE_NAME";
30: static final String PREF_CHECK_WSDL_GENERATE = "WSDL_GEN";
31: static final String PREF_CHECK_SKIP_WSDL = "SKIP_WSDL";
32: static final String PREF_CHECK_SELECT_WSDL = "SELECT_WSDL";
33: // ####################################################
34: static final String PREF_WSDL_CLASS_NAME = "WSDL_CLASS_NAME";
35: static final String PREF_WSDL_STYLE_INDEX = "WSDL_STYLE";
36: //#######################################################
37: static final String PREF_OUTPUT_LOCATION = "OUT_LOCATION";
38: static final String PREF_OUTPUT_NAME = "OUT_NAME";
39: // #######################################################
40: static final String PREF_SERVICE_GEN_SERVICE_NAME = "SERVICE_NAME";
41: static final String PREF_SERVICE_GEN_CLASSNAME = "CLASSNAME";
42: static final String PREF_SERVICE_GEN_LOAD_ALL = "LOAD_ALL";
43: //######################################################
44: static final String PREF_LIB_LIBNAMES = "LIB_NAMES";
45:
46: }
|