KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > deployment > xml > ConnectorTagNames


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23  package com.sun.enterprise.deployment.xml;
24  
25 /** The XML tag names for the connector dtd
26  * @author Vivek Nagar
27  * @author Tony Ng
28  */

29 public interface ConnectorTagNames extends TagNames {
30
31     public static String JavaDoc CONNECTOR = "connector";
32     public static String JavaDoc RESOURCE_ADAPTER = "resourceadapter";
33     public static String JavaDoc AUTH_MECHANISM = "authentication-mechanism";
34     public static String JavaDoc CREDENTIAL_INTF = "credential-interface";
35     public static String JavaDoc AUTH_MECH_TYPE = "authentication-mechanism-type";
36     public static String JavaDoc CONNECTION_FACTORY_INTF =
37         "connectionfactory-interface";
38     public static String JavaDoc CONNECTION_FACTORY_IMPL =
39         "connectionfactory-impl-class";
40     public static String JavaDoc CONNECTION_INTF = "connection-interface";
41     public static String JavaDoc CONNECTION_IMPL = "connection-impl-class";
42     public static String JavaDoc CONFIG_PROPERTY = "config-property";
43     public static String JavaDoc CONFIG_PROPERTY_NAME = "config-property-name";
44     public static String JavaDoc CONFIG_PROPERTY_TYPE = "config-property-type";
45     public static String JavaDoc CONFIG_PROPERTY_VALUE = "config-property-value";
46     public static String JavaDoc EIS_TYPE = "eis-type";
47     public static String JavaDoc MANAGED_CONNECTION_FACTORY =
48         "managedconnectionfactory-class";
49     public static String JavaDoc REAUTHENTICATION_SUPPORT = "reauthentication-support";
50     public static String JavaDoc SPEC_VERSION = "spec-version";
51     public static String JavaDoc SECURITY_PERMISSION = "security-permission";
52     public static String JavaDoc SECURITY_PERMISSION_SPEC = "security-permission-spec";
53     public static String JavaDoc TRANSACTION_SUPPORT = "transaction-support";
54     public static String JavaDoc VENDOR_NAME = "vendor-name";
55     public static String JavaDoc VERSION = "version";
56     public static String JavaDoc RESOURCEADAPTER_VERSION = "resourceadapter-version";
57     public static String JavaDoc LICENSE_REQUIRED = "license-required";
58     public static String JavaDoc LICENSE = "license";
59
60     //connector1.5
61
public static String JavaDoc OUTBOUND_RESOURCE_ADAPTER = "outbound-resourceadapter";
62     public static String JavaDoc INBOUND_RESOURCE_ADAPTER = "inbound-resourceadapter";
63     public static String JavaDoc CONNECTION_DEFINITION = "connection-definition";
64     public static String JavaDoc RESOURCE_ADAPTER_CLASS = "resourceadapter-class";
65     public static String JavaDoc MSG_ADAPTER = "messageadapter";
66     public static String JavaDoc MSG_LISTENER = "messagelistener";
67     public static String JavaDoc MSG_LISTENER_TYPE = "messagelistener-type";
68     public static String JavaDoc ADMIN_OBJECT = "adminobject";
69     public static String JavaDoc ADMIN_OBJECT_INTERFACE = "adminobject-interface";
70     public static String JavaDoc ADMIN_OBJECT_CLASS = "adminobject-class";
71     public static String JavaDoc ACTIVATION_SPEC = "activationspec";
72     public static String JavaDoc ACTIVATION_SPEC_CLASS = "activationspec-class";
73     public static String JavaDoc REQUIRED_CONFIG_PROP = "required-config-property";
74     public static String JavaDoc CONNECTION = "connection";
75     public static String JavaDoc CONNECTION_FACTORY = "connectionfactory";
76     
77     //FIXME. the following are no longer valid. need clean up when
78
//inbound-ra-class is completed removed from the implementation
79
public static String JavaDoc INBOUND_RESOURCE_ADAPTER_CLASS = "resourceadapter-class";
80     public static String JavaDoc MSG_LISTENER_NAME = "messagelistener-name";
81     
82     // Connector DD element valid values
83
public static final String JavaDoc DD_BASIC_PASSWORD = "BasicPassword";
84     public static final String JavaDoc DD_KERBEROS = "Kerbv5";
85     public static final String JavaDoc DD_NO_TRANSACTION = "NoTransaction";
86     public static final String JavaDoc DD_LOCAL_TRANSACTION = "LocalTransaction";
87     public static final String JavaDoc DD_XA_TRANSACTION = "XATransaction";
88 }
89
Popular Tags