KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > config > impl > ConfigSetImpl


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  * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
26  *
27  * Copyright 2001-2002 by iPlanet/Sun Microsystems, Inc.,
28  * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
29  * All rights reserved.
30  */

31 package com.sun.enterprise.config.impl;
32
33 import java.io.Serializable JavaDoc;
34 import java.util.HashMap JavaDoc;
35 import java.util.Set JavaDoc;
36 import java.util.Iterator JavaDoc;
37
38 /**
39  * A configuration change for an element. Holds xpath, list of changed
40  * attributes, their old and new values.
41  */

42 public class ConfigSetImpl extends ConfigChangeImpl implements com.sun.enterprise.config.ConfigSet, Serializable JavaDoc {
43
44     private Object JavaDoc cb;
45     private Object JavaDoc[] cbArray; // PS: will have one of this.
46

47     private String JavaDoc name;
48
49     public String JavaDoc getConfigChangeType() {
50         return TYPE_SET;
51     }
52     
53     public ConfigSetImpl(String JavaDoc parentXpath, String JavaDoc name, Object JavaDoc cb, Object JavaDoc[] cbArray) {
54         this.parentXpath = parentXpath;
55         this.xpath = parentXpath; // temporarily add this to xpath also
56
// since it is being used in notification
57
this.cb = cb;
58         this.cbArray = cbArray;
59         this.name = name;
60     }
61     
62     public Object JavaDoc getConfigBean() {
63         return cb;
64     }
65     
66     public Object JavaDoc[] getConfigBeanArray() {
67         return cbArray;
68     }
69     public String JavaDoc getName() {
70         return name;
71     }
72     
73     public String JavaDoc toString() {
74         String JavaDoc s = (cb == null) ? "" : cb.toString();
75         String JavaDoc ret = s + ":set parentXpath=" + parentXpath +"\n";
76         return ret;
77     }
78 }
79
Popular Tags