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

com.liferay.portlet.asset.util.AssetPublisherAddItemHolder Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
/**
 * Copyright (c) 2000-present 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.portlet.asset.util;

import com.liferay.portal.kernel.language.LanguageUtil;
import com.liferay.portal.kernel.security.permission.ResourceActionsUtil;
import com.liferay.portal.kernel.util.CollatorUtil;
import com.liferay.portal.kernel.util.ResourceBundleUtil;

import java.text.Collator;

import java.util.Locale;
import java.util.ResourceBundle;

import javax.portlet.PortletURL;

/**
 * @author     Preston Crary
 * @deprecated As of Judson (7.1.x), moved to {@link
 *             com.liferay.asset.util.impl.AssetPublisherAddItemHolder}
 */
@Deprecated
public class AssetPublisherAddItemHolder
	implements Comparable {

	public AssetPublisherAddItemHolder(
		String portletId, String name, ResourceBundle resourceBundle,
		Locale locale, PortletURL portletURL) {

		_portletId = portletId;
		_name = name;
		_locale = locale;
		_portletURL = portletURL;

		_collator = CollatorUtil.getInstance(locale);
		_modelResource = _getModelResource(resourceBundle);
	}

	@Override
	public int compareTo(
		AssetPublisherAddItemHolder assetPublisherAddItemHolder) {

		return _collator.compare(
			_modelResource, assetPublisherAddItemHolder._modelResource);
	}

	public String getModelResource() {
		return _modelResource;
	}

	public String getName() {
		return _name;
	}

	public String getPortletId() {
		return _portletId;
	}

	public PortletURL getPortletURL() {
		return _portletURL;
	}

	/**
	 * @see AssetRendererFactory#getTypeName(Locale)
	 */
	private String _getModelResource(ResourceBundle resourceBundle) {
		String modelResourceNamePrefix =
			ResourceActionsUtil.getModelResourceNamePrefix();

		String key = modelResourceNamePrefix.concat(_name);

		String value = LanguageUtil.get(_locale, key, null);

		if ((value == null) && (resourceBundle != null)) {
			value = ResourceBundleUtil.getString(resourceBundle, key);
		}

		if (value == null) {
			value = _name;
		}

		return value;
	}

	private final Collator _collator;
	private final Locale _locale;
	private final String _modelResource;
	private final String _name;
	private final String _portletId;
	private final PortletURL _portletURL;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy