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

com.liferay.portal.kernel.plugin.PluginPackage Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package com.liferay.portal.kernel.plugin;

import java.util.Date;
import java.util.List;
import java.util.Properties;

/**
 * View Source
 *
 * @author Jorge Ferrer
 * @author Brian Wing Shun Chan
 *
 */
public interface PluginPackage {

	public String getModuleId();

	public String getName();

	public void setName(String name);

	public String getRecommendedDeploymentContext();

	public void setRecommendedDeploymentContext(String deploymentContext);

	public Date getModifiedDate();

	public void setModifiedDate(Date modifiedDate);

	public String getAuthor();

	public void setAuthor(String author);

	public List getTypes();

	public void setTypes(List types);

	public List getTags();

	public void setTags(List tags);

	public List getLicenses();

	public void setLicenses(List licenses);

	public List getLiferayVersions();

	public void setLiferayVersions(List liferayVersions);

	public String getShortDescription();

	public void setShortDescription(String shortDescription);

	public String getLongDescription();

	public void setLongDescription(String longDescription);

	public String getChangeLog();

	public void setChangeLog(String changeLog);

	public void setScreenshots(List screenshots);

	public List getScreenshots();

	public String getPageURL();

	public void setPageURL(String pageURL);

	public String getDownloadURL();

	public void setDownloadURL(String downloadURL);

	public String getRepositoryURL();

	public RemotePluginPackageRepository getRepository();

	public void setRepository(RemotePluginPackageRepository repository);

	public String getContext();

	public void setContext(String context);

	public String getArtifactURL();

	public String getArtifactId();

	public String getGroupId();

	public String getPackageId();

	public String getVersion();

	public Properties getDeploymentSettings();

	public void setDeploymentSettings(Properties properties);

	public boolean isLaterVersionThan(PluginPackage pluginPackage);

	public boolean isPreviousVersionThan(PluginPackage pluginPackage);

	public boolean isSameVersionAs(PluginPackage pluginPackage);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy