/******************************************************************************* * Copyright (c) 2012 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; import java.util.List; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import com.openshift.client.cartridge.ICartridge; import com.openshift.client.cartridge.IEmbeddableCartridge; import com.openshift.client.cartridge.IStandaloneCartridge; /** * @author Xavier Coulon * @author Andre Dietisheim */ public interface IOpenShiftConnection { public static final String DEFAULT_CLIENT_ID = "com.openshift.client"; /** * Returns the server this connection is bound to. * * @return the server */ public String getServer(); /** * Returns the user associated with the current OpenShift connection. * * @return the user * @throws OpenShiftException */ public IUser getUser() throws OpenShiftException; /** * Returns the domains associated with the current OpenShift connection. * * @return the domains * @throws OpenShiftException */ public List<IDomain> getDomains() throws OpenShiftException; /** * Returns the available standalone cartridges associated with the current * OpenShift connection. Obsolete cartridges are not reported. * * @return the available standalone cartridges * @throws OpenShiftException */ public List<IStandaloneCartridge> getStandaloneCartridges() throws OpenShiftException; /** * Returns the available standalone cartridges associated with the current * OpenShift connection. * * @param includeObsolete * include obsolete cartridges * @return the available standalone cartridges * @throws OpenShiftException */ public List<IStandaloneCartridge> getStandaloneCartridges(boolean includeObsolete) throws OpenShiftException; /** * Returns the available embeddable cartridges associated with the current * OpenShift connection. Obsolete cartridges are not reported. * * @return the available embeddable cartridges * @throws OpenShiftException */ public List<IEmbeddableCartridge> getEmbeddableCartridges() throws OpenShiftException; /** * Returns the available embeddable cartridges associated with the current * OpenShift connection. * * @param includeObsolete include obsolete cartridges * * @return the available embeddable cartridges * @throws OpenShiftException */ public List<IEmbeddableCartridge> getEmbeddableCartridges(boolean includeObsolete) throws OpenShiftException; /** * Returns all the available cartridges, embeddable and standalone ones. * Obsolete cartridges are not reported. * * @return the all the available cartridges * @throws OpenShiftException */ public List<ICartridge> getCartridges() throws OpenShiftException; /** * Returns all the available cartridges, embeddable and standalone ones. * * @param includeObsolete * whether to include obsolete cartridges or not. * * @return the all the available cartridges * @throws OpenShiftException */ public List<ICartridge> getCartridges(boolean includeObsolete) throws OpenShiftException; /** * Returns the available quickstarts associated with the current * OpenShift connection. * * @return the available quickstarts * @throws OpenShiftException */ public List<IQuickstart> getQuickstarts() throws OpenShiftException; /** * Returns the executor service instance that's available in this * connection. * * @return the executor service instance for this connection * * @see ExecutorService * @see Executors */ public ExecutorService getExecutorService(); }