KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > j2ee > blueprints > docoriented > client > JNDINames


1 /* Copyright 2005 Sun Microsystems, Inc. All rights reserved. You may not modify, use, reproduce, or distribute this software except in compliance with the terms of the License at:
2
3  http://developer.sun.com/berkeley_license.html
4
5  $Id: JNDINames.java,v 1.1 2005/05/24 23:04:35 sean_brydon Exp $ */

6
7
8
9 package com.sun.j2ee.blueprints.docoriented.client;
10
11
12
13 /**
14
15  * JNDI names of various Web Service References used by the client
16
17  */

18
19 public class JNDINames {
20
21
22
23     public static final String JavaDoc ANY_SERVICE_REF= "java:comp/env/service/AnyPurchaseOrderService";
24
25     public static final String JavaDoc ANY_TYPE_SERVICE_REF= "java:comp/env/service/AnyTypePurchaseOrderService";
26
27     public static final String JavaDoc ATTACHMENT_SERVICE_REF= "java:comp/env/service/AttachmentPurchaseOrderService";
28
29     public static final String JavaDoc SCHEMA_SERVICE_REF= "java:comp/env/service/SchemaDefinedPurchaseOrderService";
30
31     public static final String JavaDoc STRING_SERVICE_REF= "java:comp/env/service/StringPurchaseOrderService";
32
33 }
34
35
Popular Tags