001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041:
042: package org.netbeans.modules.sun.manager.jbi.management.model;
043:
044: import com.sun.jbi.ui.common.JBIComponentInfo;
045: import java.util.ArrayList;
046: import java.util.List;
047:
048: /**
049: * JBIComponentInfo with additional namespace information.
050: *
051: * @author Graj
052: */
053: public class JBIComponentStatus extends JBIComponentInfo {
054:
055: private List<String> namespaceList = new ArrayList<String>();
056:
057: /** Binding type */
058: public static final String BINDING = "Binding"; // NOI18N
059:
060: /** Engine Type */
061: public static final String ENGINE = "Engine"; // NOI18N
062:
063: // /** Shared Library Type */
064: // public static final String LIBRARY = "Namespace"; // NOI18N
065:
066: public JBIComponentStatus() {
067: super ();
068: }
069:
070: public JBIComponentStatus(String name, String description,
071: String type, String state, List<String> namespaces) {
072: super (type, state, name, description);
073: setNamespaces(namespaces);
074: }
075:
076: /**
077: * DOCUMENT ME!
078: *
079: * @return the namespaces.
080: */
081: public List<String> getNamespaces() {
082: return new ArrayList<String>(namespaceList);
083: }
084:
085: /**
086: * DOCUMENT ME!
087: *
088: * @param namespaces The namespaces to set.
089: */
090: public void setNamespaces(List<String> namespaces) {
091: namespaceList.clear();
092: for (String namespace : namespaces) {
093: if (!namespaceList.contains(namespace)) {
094: namespaceList.add(namespace);
095: }
096: }
097: }
098:
099: public boolean addNamespace(String namespace) {
100: if (!namespaceList.contains(namespace)) {
101: namespaceList.add(namespace);
102: return true;
103: }
104:
105: return false;
106: }
107:
108: public boolean isBindingComponent() {
109: return getType().equalsIgnoreCase(BINDING) || // from project config
110: getType().equalsIgnoreCase(BINDING_TYPE); // from runtime (JBIComponentInfo)
111: }
112:
113: public boolean isServiceEngine() {
114: return getType().equalsIgnoreCase(ENGINE) || // from project config
115: getType().equalsIgnoreCase(ENGINE_TYPE); // from runtime (JBIComponentInfo)
116: }
117:
118: public boolean isSharedLibrary() {
119: return getType().equalsIgnoreCase(SHARED_LIBRARY_TYPE);
120: }
121:
122: public void dump() {
123: System.out
124: .println("/////////////////////////////////////////////////"); // NOI18N
125: System.out
126: .println("// -- JBI Component -- //"); // NOI18N
127: System.out
128: .println("/////////////////////////////////////////////////"); // NOI18N
129: //System.out.println("// componentId is: "+ this.componentId);
130: System.out.println("// name is: " + getName()); // NOI18N
131: System.out.println("// description is: " + getDescription()); // NOI18N
132: System.out.println("// type is: " + getType()); // NOI18N
133: System.out.println("// state is: " + getState()); // NOI18N
134: System.out
135: .println("/////////////////////////////////////////////////"); // NOI18N
136: }
137: }
|