All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.as.webservices.util.ServiceContainerEndpointRegistry Maven / Gradle / Ivy

The newest version!
/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2012, 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.webservices.util;

import java.util.concurrent.ConcurrentHashMap;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.CopyOnWriteArraySet;

import javax.management.ObjectName;

import org.jboss.msc.service.ServiceName;
import org.jboss.ws.common.ObjectNameFactory;
import org.jboss.wsf.spi.deployment.Endpoint;
import org.jboss.wsf.spi.management.EndpointRegistry;
import org.jboss.wsf.spi.management.EndpointResolver;

/**
 * @author Jim Ma
 * @author Richard Opalka
 */
public class ServiceContainerEndpointRegistry implements EndpointRegistry {

    private static final Map endpoints = new ConcurrentHashMap<>();

    @Override
    public Set getEndpoints() {
        String contextPath;
        String endpointName;
        StringBuilder name;
        final Set retVal = new CopyOnWriteArraySet<>();
        for (final ServiceName sname : endpoints.keySet()) {
            contextPath = sname.getParent().getSimpleName().substring(8);
            endpointName = sname.getSimpleName();
            name = new StringBuilder(Endpoint.SEPID_DOMAIN + ":");
            name.append(Endpoint.SEPID_PROPERTY_CONTEXT + "=").append(contextPath).append(",");
            name.append(Endpoint.SEPID_PROPERTY_ENDPOINT + "=").append(endpointName);
            retVal.add(ObjectNameFactory.create(name.toString()));
        }
        return retVal;
    }

    @Override
    public Endpoint getEndpoint(final ObjectName epName) {
        final String context = epName.getKeyProperty(Endpoint.SEPID_PROPERTY_CONTEXT);
        final String name = epName.getKeyProperty(Endpoint.SEPID_PROPERTY_ENDPOINT);
        final ServiceName endpointName = WSServices.ENDPOINT_SERVICE.append("context=" + context).append(name);
        return getEndpoint(endpointName);
    }

    @Override
    public Endpoint resolve(final EndpointResolver resolver) {
        return resolver.query(new CopyOnWriteArraySet<>(endpoints.values()).iterator());
    }

    @Override
    public boolean isRegistered(final ObjectName epName) {
        return getEndpoint(epName) != null;
    }

    public static void register(final ServiceName endpointName, final Endpoint endpoint) {
        endpoints.put(endpointName, endpoint);
    }

    public static void unregister(final ServiceName endpointName, final Endpoint endpoint) {
        endpoints.remove(endpointName, endpoint);
    }

    public static Endpoint getEndpoint(final ServiceName endpointName) {
        return endpoints.get(endpointName);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy