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

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

There is a newer version: 2.41.23
Show newest version
package org.jfrog.build.api;

import java.util.Properties;

/**
 * The main implementation of all the Build-API beans
 *
 * @author Noam Y. Tenne
 */
public abstract class BaseBuildBean implements BuildBean {

    private Properties properties;

    public Properties getProperties() {
        return properties;
    }

    public void setProperties(Properties properties) {
        this.properties = properties;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy