View Javadoc

1   /*
2    * $Id: RoleConstants.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  /***
12   * This class is used as a container for constants used by the BPEL Role WSDL
13   * extension.
14   * 
15   * @author Pawel Kowalski
16   * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:21 $
17   */
18  public class RoleConstants {
19  
20      /***
21       * Role namespace.
22       */
23      public static final String NS_URI = "http://schemas.xmlsoap.org/ws/2003/05/partner-link/";
24  
25      /***
26       * Role element name.
27       */
28      public static final String LOCAL_NAME = "role";
29  
30      /***
31       * PortType element name.
32       */
33      public static final String PORT_TYPE_LOCAL_NAME = "portType";
34  
35      /***
36       * PortType name attribute name
37       */
38      public static final String PORT_TYPE_NAME = "name";
39  
40      /***
41       * Role name attribute name.
42       */
43      public static final String ROLE_NAME = "name";
44  
45  }