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

com.atlassian.bamboo.specs.api.builders.jobcache.CacheItem Maven / Gradle / Ivy

There is a newer version: 2.1.7
Show newest version
package com.atlassian.bamboo.specs.api.builders.jobcache;

import com.atlassian.bamboo.specs.api.builders.EntityPropertiesBuilder;
import com.atlassian.bamboo.specs.api.model.jobcache.CacheItemProperties;

/**
 * A named cache location.
 */
public class CacheItem extends EntityPropertiesBuilder {

    private String location;

    public CacheItem() {}

    public CacheItem location(String location) {
        this.location = location;
        return this;
    }

    @Override
    protected CacheItemProperties build() {
        return new CacheItemProperties(location);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy