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

org.jfrog.build.api.BuildBean Maven / Gradle / Ivy

There is a newer version: 2.41.23
Show newest version


package org.jfrog.build.api;

import java.io.Serializable;
import java.util.Properties;

/**
 * The main interface of all the Build-API beans
 *
 * @author Noam Y. Tenne
 */
public interface BuildBean extends Serializable {
    /**
     * Returns the properties of the bean
     *
     * @return Bean properties
     */
    Properties getProperties();

    /**
     * Sets the properties of the bean
     *
     * @param properties Bean properties
     */
    void setProperties(Properties properties);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy