com.atlassian.bamboo.specs.api.builders.jobcache.CacheItem Maven / Gradle / Ivy
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);
}
}