KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > config > serverbeans > HttpAccessLog


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 /**
25  * This generated bean class HttpAccessLog matches the DTD element http-access-log
26  *
27  */

28
29 package com.sun.enterprise.config.serverbeans;
30
31 import org.w3c.dom.*;
32 import org.netbeans.modules.schema2beans.*;
33 import java.beans.*;
34 import java.util.*;
35 import java.io.Serializable JavaDoc;
36 import com.sun.enterprise.config.ConfigBean;
37 import com.sun.enterprise.config.ConfigException;
38 import com.sun.enterprise.config.StaleWriteConfigException;
39 import com.sun.enterprise.util.i18n.StringManager;
40
41 // BEGIN_NOI18N
42

43 public class HttpAccessLog extends ConfigBean implements Serializable JavaDoc
44 {
45
46     static Vector comparators = new Vector();
47     private static final org.netbeans.modules.schema2beans.Version runtimeVersion = new org.netbeans.modules.schema2beans.Version(4, 2, 0);
48
49
50     public HttpAccessLog() {
51         this(Common.USE_DEFAULT_VALUES);
52     }
53
54     public HttpAccessLog(int options)
55     {
56         super(comparators, runtimeVersion);
57         // Properties (see root bean comments for the bean graph)
58
initPropertyTables(0);
59         this.initialize(options);
60     }
61
62     // Setting the default values of the properties
63
void initialize(int options) {
64
65     }
66
67     /**
68     * Getter for LogDirectory of the Element http-access-log
69     * @return the LogDirectory of the Element http-access-log
70     */

71     public String JavaDoc getLogDirectory() {
72         return getAttributeValue(ServerTags.LOG_DIRECTORY);
73     }
74     /**
75     * Modify the LogDirectory of the Element http-access-log
76     * @param v the new value
77     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
78     */

79     public void setLogDirectory(String JavaDoc v, boolean overwrite) throws StaleWriteConfigException {
80         setAttributeValue(ServerTags.LOG_DIRECTORY, v, overwrite);
81     }
82     /**
83     * Modify the LogDirectory of the Element http-access-log
84     * @param v the new value
85     */

86     public void setLogDirectory(String JavaDoc v) {
87         setAttributeValue(ServerTags.LOG_DIRECTORY, v);
88     }
89     /**
90     * Get the default value of LogDirectory from dtd
91     */

92     public static String JavaDoc getDefaultLogDirectory() {
93         return "${com.sun.aas.instanceRoot}/logs/access".trim();
94     }
95     /**
96     * Getter for Iponly of the Element http-access-log
97     * @return the Iponly of the Element http-access-log
98     */

99     public boolean isIponly() {
100         return toBoolean(getAttributeValue(ServerTags.IPONLY));
101     }
102     /**
103     * Modify the Iponly of the Element http-access-log
104     * @param v the new value
105     * @throws StaleWriteConfigException if overwrite is false and file changed on disk
106     */

107     public void setIponly(boolean v, boolean overwrite) throws StaleWriteConfigException {
108         setAttributeValue(ServerTags.IPONLY, ""+(v==true), overwrite);
109     }
110     /**
111     * Modify the Iponly of the Element http-access-log
112     * @param v the new value
113     */

114     public void setIponly(boolean v) {
115         setAttributeValue(ServerTags.IPONLY, ""+(v==true));
116     }
117     /**
118     * Get the default value of Iponly from dtd
119     */

120     public static String JavaDoc getDefaultIponly() {
121         return "true".trim();
122     }
123     /**
124     * get the xpath representation for this element
125     * returns something like abc[@name='value'] or abc
126     * depending on the type of the bean
127     */

128     protected String JavaDoc getRelativeXPath() {
129         String JavaDoc ret = null;
130         ret = "http-access-log";
131         return (null != ret ? ret.trim() : null);
132     }
133
134     /*
135     * generic method to get default value from dtd
136     */

137     public static String JavaDoc getDefaultAttributeValue(String JavaDoc attr) {
138         if(attr == null) return null;
139         attr = attr.trim();
140         if(attr.equals(ServerTags.LOG_DIRECTORY)) return "${com.sun.aas.instanceRoot}/logs/access".trim();
141         if(attr.equals(ServerTags.IPONLY)) return "true".trim();
142     return null;
143     }
144     //
145
public static void addComparator(org.netbeans.modules.schema2beans.BeanComparator c) {
146         comparators.add(c);
147     }
148
149     //
150
public static void removeComparator(org.netbeans.modules.schema2beans.BeanComparator c) {
151         comparators.remove(c);
152     }
153     public void validate() throws org.netbeans.modules.schema2beans.ValidateException {
154     }
155
156     // Dump the content of this bean returning it as a String
157
public void dump(StringBuffer JavaDoc str, String JavaDoc indent){
158         String JavaDoc s;
159         Object JavaDoc o;
160         org.netbeans.modules.schema2beans.BaseBean n;
161     }
162     public String JavaDoc dumpBeanNode(){
163         StringBuffer JavaDoc str = new StringBuffer JavaDoc();
164         str.append("HttpAccessLog\n"); // NOI18N
165
this.dump(str, "\n "); // NOI18N
166
return str.toString();
167     }}
168
169 // END_NOI18N
170

171
Popular Tags