/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.osgi.management; import java.util.Collections; import java.util.Set; import org.jboss.as.controller.PathAddress; import org.jboss.as.controller.PathElement; import org.jboss.as.controller.registry.Resource; import org.jboss.as.osgi.parser.ModelConstants; import org.jboss.dmr.ModelNode; /** * More or less copied from org.jboss.as.messaging.CoreAddressResource. * * @author David Bosschaert * @author Brian Stansberry (c) 2011 Red Hat Inc. */ public class OSGiBundleResource implements Resource { static OSGiBundleResource INSTANCE = new OSGiBundleResource(); private OSGiBundleResource() { } @Override public ModelNode getModel() { return new ModelNode(); } @Override public void writeModel(ModelNode newModel) { throw new UnsupportedOperationException(); } @Override public boolean isModelDefined() { return false; } @Override public boolean hasChild(PathElement element) { return false; } @Override public Resource getChild(PathElement element) { return null; } @Override public Resource requireChild(PathElement element) { throw new NoSuchResourceException(element); } @Override public boolean hasChildren(String childType) { return false; } @Override public Resource navigate(PathAddress address) { return Resource.Tools.navigate(this, address); } @Override public Set<String> getChildTypes() { return Collections.emptySet(); } @Override public Set<String> getChildrenNames(String childType) { return Collections.emptySet(); } @Override public Set<ResourceEntry> getChildren(String childType) { return Collections.emptySet(); } @Override public void registerChild(PathElement address, Resource resource) { throw new UnsupportedOperationException(); } @Override public void registerChild(PathElement address, int index, Resource resource) { throw new UnsupportedOperationException(); } @Override public Resource removeChild(PathElement address) { return null; } @Override public boolean isRuntime() { return true; } @Override public boolean isProxy() { return false; } @Override public Resource clone() { return new OSGiBundleResource(); } @Override public Set<String> getOrderedChildTypes() { return Collections.emptySet(); } static class OSGiBundleResourceEntry extends OSGiBundleResource implements ResourceEntry, Comparable<ResourceEntry> { private final PathElement path; public OSGiBundleResourceEntry(String name) { path = PathElement.pathElement(ModelConstants.BUNDLE, name); } @Override public String getName() { return path.getValue(); } @Override public PathElement getPathElement() { return path; } @Override public OSGiBundleResourceEntry clone() { return new OSGiBundleResourceEntry(path.getValue()); } @Override public int compareTo(ResourceEntry other) { return getName().compareTo(other.getName()); } @Override public int hashCode() { return path.hashCode(); } @Override public boolean equals(Object obj) { if (!(obj instanceof OSGiBundleResourceEntry)) return false; OSGiBundleResourceEntry other = (OSGiBundleResourceEntry) obj; return path.equals(other.path); } @Override public String toString() { return path.toString(); } @Override public Set<String> getOrderedChildTypes() { return Collections.emptySet(); } } }