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

com.openshift.client.cartridge.IEmbeddedCartridge Maven / Gradle / Ivy

The newest version!
/******************************************************************************* 
 * Copyright (c) 2011 Red Hat, Inc. 
 * Distributed under license by Red Hat, Inc. All rights reserved. 
 * This program is made available under the terms of the 
 * Eclipse Public License v1.0 which accompanies this distribution, 
 * and is available at http://www.eclipse.org/legal/epl-v10.html 
 * 
 * Contributors: 
 * Red Hat, Inc. - initial API and implementation 
 ******************************************************************************/
package com.openshift.client.cartridge;

import com.openshift.client.IApplication;
import com.openshift.client.IOpenShiftResource;
import com.openshift.client.OpenShiftException;

/**
 * Interface to designate a cartridge that has been added and configured
 * @author André Dietisheim
 */
public interface IEmbeddedCartridge extends IOpenShiftResource, IEmbeddableCartridge {

	/**
	 * The url at which this cartridge may be reached
	 * 
	 * @return the url for this cartridge
	 * @throws OpenShiftException
	 */
	public String getUrl() throws OpenShiftException;
	
	/**
	 * Destroys this cartridge (and removes it from the list of existing cartridges)
	 * 
	 * @throws OpenShiftException
	 */
	public void destroy() throws OpenShiftException;

	
	/**
	 * Returns the application this cartridge is embedded into.
	 * 
	 * @return application this is embedded into
	 */
	public IApplication getApplication();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy