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

com.arjuna.mwlabs.wsas.activity.HLSManager Maven / Gradle / Ivy

The newest version!
/*
   Copyright The Narayana Authors
   SPDX-License-Identifier: Apache-2.0
 */



package com.arjuna.mwlabs.wsas.activity;

import com.arjuna.mw.wsas.logging.wsasLogger;

import com.arjuna.mw.wsas.activity.HLS;

import com.arjuna.mw.wsas.exceptions.SystemException;
import com.arjuna.mw.wsas.exceptions.InvalidHLSException;

import java.util.*;

/**
 * The HLS manager is the way in which an HLS can register
 * itself with the activity service. This allows it to be informed
 * of the lifecycle of activities and to augment that lifecyle and
 * associated context.
 *
 * An HLS can be associated with all threads (globally) or with only
 * a specific thread (locally).
 *
 * @author Mark Little ([email protected])
 * @version $Id: HLSManager.java,v 1.5 2005/05/19 12:13:18 nmcl Exp $
 * @since 1.0.
 */

public class HLSManager
{

    public static final void addHLS (HLS service) throws InvalidHLSException, SystemException
    {
	if (service == null) {
	    throw new InvalidHLSException();
    } else {
        String key = service.identity();
        synchronized(_hlsMap) {
            _hlsMap.put(key, service);
        }
    }
    }

    public static final void removeHLS (HLS service) throws InvalidHLSException, SystemException
    {
	if (service == null)
	    throw new InvalidHLSException();
	else
	{
        String key = service.identity();
        HLS oldValue;
	    synchronized (_hlsMap)
	    {
            oldValue = _hlsMap.remove(key);
        }
        if (oldValue == null) {
            throw new InvalidHLSException(wsasLogger.i18NLogger.get_activity_HLSManager_1());
        }
    }
    }
    /*
     * redundant?
     */
    public static final HLS[] allHighLevelServices () throws SystemException
    {
	synchronized (_hlsMap)
	{
	    HLS[] toReturn = new HLS[(int) _hlsMap.size()];
        Collection services = _hlsMap.values();
        return services.toArray(toReturn);
	}
    }

    public static final HLS getHighLevelService (String serviceType) throws SystemException
    {
        synchronized (_hlsMap)
        {
            return _hlsMap.get(serviceType);
        }
    }

    private static HashMap _hlsMap = new HashMap();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy