in openstack-poppy/src/main/java/org/jclouds/openstack/poppy/v1/domain/CachingRule.java [82:97]
public CachingRule build() {
String missing = "";
if (name == null) {
missing += " name";
}
if (requestURL == null) {
missing += " requestURL";
}
if (!missing.isEmpty()) {
throw new IllegalStateException("Missing required properties:" + missing);
}
CachingRule result = new AutoValue_CachingRule(
this.name,
this.requestURL);
return result;
}