KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > config > clientbeans > ClientTags


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  
24 package com.sun.enterprise.config.clientbeans;
25 public class ClientTags{
26 // Tags for Element client-container
27
static public final String JavaDoc CLIENT_CONTAINER = "client-container";
28     static public final String JavaDoc SEND_PASSWORD = "send-password";
29 // Tags for Element target-server
30
static public final String JavaDoc TARGET_SERVER = "target-server";
31     static public final String JavaDoc DESCRIPTION = "description";
32     static public final String JavaDoc NAME = "name";
33     static public final String JavaDoc ADDRESS = "address";
34     static public final String JavaDoc PORT = "port";
35 // Tags for Element auth-realm
36
static public final String JavaDoc AUTH_REALM = "auth-realm";
37     //static public final String NAME = "name";
38
static public final String JavaDoc CLASSNAME = "classname";
39 // Tags for Element client-credential
40
static public final String JavaDoc CLIENT_CREDENTIAL = "client-credential";
41     static public final String JavaDoc USER_NAME = "user-name";
42     static public final String JavaDoc PASSWORD = "password";
43     static public final String JavaDoc REALM = "realm";
44 // Tags for Element log-service
45
static public final String JavaDoc LOG_SERVICE = "log-service";
46     static public final String JavaDoc FILE = "file";
47     static public final String JavaDoc LEVEL = "level";
48 // Tags for Element message-security-config
49
static public final String JavaDoc MESSAGE_SECURITY_CONFIG = "message-security-config";
50     static public final String JavaDoc AUTH_LAYER = "auth-layer";
51     static public final String JavaDoc DEFAULT_PROVIDER = "default-provider";
52     static public final String JavaDoc DEFAULT_CLIENT_PROVIDER = "default-client-provider";
53 // Tags for Element element-property
54
static public final String JavaDoc ELEMENT_PROPERTY = "element-property";
55     //static public final String NAME = "name";
56
static public final String JavaDoc VALUE = "value";
57 // Tags for Element provider-config
58
static public final String JavaDoc PROVIDER_CONFIG = "provider-config";
59     static public final String JavaDoc PROVIDER_ID = "provider-id";
60     static public final String JavaDoc PROVIDER_TYPE = "provider-type";
61     static public final String JavaDoc CLASS_NAME = "class-name";
62 // Tags for Element request-policy
63
static public final String JavaDoc REQUEST_POLICY = "request-policy";
64     static public final String JavaDoc AUTH_SOURCE = "auth-source";
65     static public final String JavaDoc AUTH_RECIPIENT = "auth-recipient";
66 // Tags for Element response-policy
67
static public final String JavaDoc RESPONSE_POLICY = "response-policy";
68     //static public final String AUTH_SOURCE = "auth-source";
69
//static public final String AUTH_RECIPIENT = "auth-recipient";
70
// Tags for Element security
71
static public final String JavaDoc SECURITY = "security";
72 // Tags for Element ssl
73
static public final String JavaDoc SSL = "ssl";
74     static public final String JavaDoc CERT_NICKNAME = "cert-nickname";
75     static public final String JavaDoc SSL2_ENABLED = "ssl2-enabled";
76     static public final String JavaDoc SSL2_CIPHERS = "ssl2-ciphers";
77     static public final String JavaDoc SSL3_ENABLED = "ssl3-enabled";
78     static public final String JavaDoc SSL3_TLS_CIPHERS = "ssl3-tls-ciphers";
79     static public final String JavaDoc TLS_ENABLED = "tls-enabled";
80     static public final String JavaDoc TLS_ROLLBACK_ENABLED = "tls-rollback-enabled";
81 // Tags for Element cert-db
82
static public final String JavaDoc CERT_DB = "cert-db";
83     static public final String JavaDoc PATH = "path";
84     //static public final String PASSWORD = "password";
85
//static public final String DESCRIPTION = "description";
86
}
87
Popular Tags