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

com.openshift.restclient.model.IBuildConfig Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2015 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.
 ******************************************************************************/

package com.openshift.restclient.model;

import java.util.List;

import com.openshift.restclient.model.build.IBuildSource;
import com.openshift.restclient.model.build.IBuildStrategy;
import com.openshift.restclient.model.build.IBuildTrigger;

public interface IBuildConfig extends IResource {

    /**
     * To defines an optional location to push the output of this build to. Kind
     * must be one of 'ImageStreamTag' or 'DockerImage'.
     * 
     * @return a mutable object reference
     */
    IObjectReference getBuildOutputReference();

    /**
     * Returns the source URL for a build
     * 
     */
    String getSourceURI();

    /**
     * Returns the policies which will trigger a build
     * 
     */
    List getBuildTriggers();

    /**
     * Add a trigger to the list of triggers for this build.
     *
     */
    void addBuildTrigger(IBuildTrigger trigger);

    /**
     * Returns the source info of the build
     * 
     * @return
     */
     T getBuildSource();

    /**
     * Set the source for the build.
     *
     */
    void setBuildSource(IBuildSource source);

    /**
     * Returns the strategy to for building the source
     * 
     * @return
     */
     T getBuildStrategy();

    /**
     * Set the strategy for how the build should be built. 
* Depending on the strategies available on the server this could be 'source', * 'docker' or 'custom'. * */ void setBuildStrategy(IBuildStrategy strategy); /** * Retrieves the name of the repository where the resulting build image will be * pushed * */ String getOutputRepositoryName(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy