blob: 87e045777a1c929e13e1a9d3be6247d3fb2b079e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.maven.jaxws.wizards;
public class WizardProperties {
public static final String WEB_SERVICE_TYPE = "webServiceType"; // NOI18N
public static final String DELEGATE_TO_SESSION_BEAN = "delegateToSessionBean"; // NOI18N
public static final String WSDL_FILE_PATH = "wsdlFilePath"; //NOI18N
public static final String WSDL_URL = "wsdl_url"; //NOI18N
public static final int FROM_SCRATCH = 0;
public static final int ENCAPSULATE_SESSION_BEAN = 1;
public static final String WSDL_MODEL = "wsdlModel"; //NOI18N
public static final String WSDL_MODELER = "wsdlModeler"; //NOI18N
public static final String WSDL_SERVICE = "wsdlService"; //NOI18N
public static final String WSDL_PORT = "wsdlPort"; //NOI18N
public static final String WSDL_PACKAGE_NAME = "wsdlPackageName"; // NOI18N
public static final String WSDL_SERVICE_HANDLER = "wsdlServiceHandler"; //NOI18N
public static final String USE_PROVIDER = "useProvider"; //NOI18N
public static final String USE_DISPATCH = "useDispatch"; // NOI18N
public static final String IS_STATELESS_BEAN = "endpointAsStatelessBean"; // NOI18N
public static final String WSDL_SOURCE = "wsdlSource"; // NOI18N
public static final String WSDL_DOWNLOAD_URL = "wsdlDownloadUrl"; // NOI18N
}