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

com.liferay.portal.kernel.messaging.proxy.MessageValuesThreadLocal Maven / Gradle / Ivy

/**
 * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
 *
 * This library 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 library 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.
 */

package com.liferay.portal.kernel.messaging.proxy;

import com.liferay.portal.kernel.util.AutoResetThreadLocal;

import java.util.Collections;
import java.util.HashMap;
import java.util.Map;

/**
 * @author Tina Tian
 */
public class MessageValuesThreadLocal {

	public static Object getValue(String key) {
		Map messageValues = _messageValuesThreadLocal.get();

		if (messageValues == null) {
			return null;
		}

		return messageValues.get(key);
	}

	public static Map getValues() {
		Map messageValues = _messageValuesThreadLocal.get();

		if (messageValues == null) {
			return Collections.emptyMap();
		}

		return messageValues;
	}

	public static void setValue(String key, Object value) {
		Map messageValues = _messageValuesThreadLocal.get();

		if (messageValues == null) {
			messageValues = new HashMap();

			_messageValuesThreadLocal.set(messageValues);
		}

		messageValues.put(key, value);
	}

	private static ThreadLocal> _messageValuesThreadLocal =
		new AutoResetThreadLocal>(
			MessageValuesThreadLocal.class.getName());

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy