View Javadoc

1   /*
2    * $Id: PartnerLinkTypeConstants.java,v 1.1 2004/12/15 14:18:21 patforna Exp $
3    *
4    * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
5    * Berne University of Applied Sciences
6    * School of Engineering and Information Technology
7    * All rights reserved.
8    */
9   package bexee.wsdl.extensions.partnerlinktype;
10  
11  import javax.xml.namespace.QName;
12  
13  /***
14   * This class is used as a container for constants used by the PartnerLinkType
15   * WSDL extension.
16   * 
17   * @author Pawel Kowalski
18   * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:21 $
19   */
20  public class PartnerLinkTypeConstants {
21  
22      /***
23       * PartnerLink namespace.
24       */
25      public static final String NS_URI = "http://schemas.xmlsoap.org/ws/2003/05/partner-link/";
26  
27      /***
28       * PartnerLinkType element name.
29       */
30      public static final String LOCAL_NAME = "partnerLinkType";
31  
32      /***
33       * ParnterLinkType QName
34       */
35      public static final QName PLINK_TYPE_QNAME = new QName(NS_URI, LOCAL_NAME);
36  
37      /***
38       * PartnerLinkType name attribute
39       */
40      public static final String PLINK_TYPE_NAME = "name";
41  
42  }