1 /*
   2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.tools.internal.ws.processor.model;
  27 
  28 /**
  29  *
  30  * @author WS Development Team
  31  */
  32 public interface ModelProperties {
  33 
  34     //to set WSDL_MODELER_NAME from inside WSDLModeler
  35     public static final String WSDL_MODELER_NAME =
  36         "com.sun.xml.internal.ws.processor.modeler.wsdl.WSDLModeler";
  37     public static final String PROPERTY_PARAM_MESSAGE_PART_NAME =
  38         "com.sun.xml.internal.ws.processor.model.ParamMessagePartName";
  39     public static final String PROPERTY_ANONYMOUS_TYPE_NAME =
  40         "com.sun.xml.internal.ws.processor.model.AnonymousTypeName";
  41     public static final String PROPERTY_ANONYMOUS_ARRAY_TYPE_NAME =
  42         "com.sun.xml.internal.ws.processor.model.AnonymousArrayTypeName";
  43     public static final String PROPERTY_ANONYMOUS_ARRAY_JAVA_TYPE =
  44         "com.sun.xml.internal.ws.processor.model.AnonymousArrayJavaType";
  45 
  46     public static final String PROPERTY_PTIE_CLASS_NAME =
  47         "com.sun.xml.internal.ws.processor.model.PtieClassName";
  48     public static final String PROPERTY_EPTFF_CLASS_NAME =
  49         "com.sun.xml.internal.ws.processor.model.EPTFFClassName";
  50     public static final String PROPERTY_SED_CLASS_NAME =
  51         "com.sun.xml.internal.ws.processor.model.SEDClassName";
  52         public static final String PROPERTY_WSDL_PORT_NAME =
  53         "com.sun.xml.internal.ws.processor.model.WSDLPortName";
  54     public static final String PROPERTY_WSDL_PORT_TYPE_NAME =
  55         "com.sun.xml.internal.ws.processor.model.WSDLPortTypeName";
  56     public static final String PROPERTY_WSDL_BINDING_NAME =
  57         "com.sun.xml.internal.ws.processor.model.WSDLBindingName";
  58     public static final String PROPERTY_WSDL_MESSAGE_NAME =
  59         "com.sun.xml.internal.ws.processor.model.WSDLMessageName";
  60     public static final String PROPERTY_MODELER_NAME =
  61         "com.sun.xml.internal.ws.processor.model.ModelerName";
  62     public static final String PROPERTY_STUB_CLASS_NAME =
  63         "com.sun.xml.internal.ws.processor.model.StubClassName";
  64     public static final String PROPERTY_STUB_OLD_CLASS_NAME =
  65         "com.sun.xml.internal.ws.processor.model.StubOldClassName";
  66     public static final String PROPERTY_DELEGATE_CLASS_NAME =
  67         "com.sun.xml.internal.ws.processor.model.DelegateClassName";
  68     public static final String PROPERTY_CLIENT_ENCODER_DECODER_CLASS_NAME =
  69         "com.sun.xml.internal.ws.processor.model.ClientEncoderClassName";
  70     public static final String PROPERTY_CLIENT_CONTACTINFOLIST_CLASS_NAME =
  71         "com.sun.xml.internal.ws.processor.model.ClientContactInfoListClassName";
  72     public static final String PROPERTY_TIE_CLASS_NAME =
  73         "com.sun.xml.internal.ws.processor.model.TieClassName";
  74     public static final String PROPERTY_JAVA_PORT_NAME =
  75         "com.sun.xml.internal.ws.processor.model.JavaPortName";
  76 }