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

org.openstack4j.model.gbp.builder.PolicyRuleBuilder Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.model.gbp.builder;

import java.util.List;

import org.openstack4j.common.Buildable.Builder;
import org.openstack4j.model.gbp.PolicyRule;
/**
 * A builder which produces a Policy Rule object
 * 
 * @author vinod borole
 */
public interface PolicyRuleBuilder extends Builder {
    PolicyRuleBuilder name(String name);
    PolicyRuleBuilder description(String description);
    PolicyRuleBuilder shared(boolean shared);
    PolicyRuleBuilder classifier(String classifierId);
    PolicyRuleBuilder actions(List actionIds);
}
 




© 2015 - 2024 Weber Informatics LLC | Privacy Policy