KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > bpel > service > soap > SoapBindConstants


1 package org.jbpm.bpel.service.soap;
2
3 /**
4  * @author Alejandro Guízar
5  * @version $Revision: 1.1 $ $Date: 2005/06/17 01:31:31 $
6  */

7 public class SoapBindConstants {
8   
9   // transports
10
public static final String JavaDoc HTTP_TRANSPORT_URI = "http://schemas.xmlsoap.org/soap/http";
11   
12   // styles
13
public static final String JavaDoc RPC_STYLE = "rpc";
14   public static final String JavaDoc DOCUMENT_STYLE = "document";
15   
16   // uses
17
public static final String JavaDoc LITERAL_USE = "literal";
18   public static final String JavaDoc ENCODED_USE = "encoded";
19   
20   // action
21
public static final String JavaDoc SOAP_ACTION_HEADER = "SOAPAction";
22   
23   // suppress default constructor, ensuring non-instantiability
24
private SoapBindConstants() {
25   }
26 }
27
Popular Tags