blob: 84b895e2cd5e6c226dd43540cfb1df24a1286c9e [file] [log] [blame]
/**
* Licensed to jclouds, Inc. (jclouds) under one or more
* contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. jclouds licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.jclouds.elb.domain;
import static com.google.common.base.Preconditions.checkNotNull;
import com.google.common.base.Objects;
import com.google.common.collect.ImmutableMultimap;
import com.google.common.collect.Multimap;
/**
*
* @see <a
* href="http://docs.amazonwebservices.com/ElasticLoadBalancing/latest/APIReference/API_DescribeLoadBalancerPolicies.html"
* >doc</a>
*
* @author Adrian Cole
*/
public class Policy {
public static Builder<?> builder() {
return new ConcreteBuilder();
}
public Builder<?> toBuilder() {
return new ConcreteBuilder().fromPolicy(this);
}
public static abstract class Builder<T extends Builder<T>> {
protected abstract T self();
protected String name;
protected String typeName;
protected ImmutableMultimap.Builder<String, Object> attributes = ImmutableMultimap.<String, Object> builder();
/**
* @see Policy#getName()
*/
public T name(String name) {
this.name = name;
return self();
}
/**
* @see Policy#getTypeName()
*/
public T typeName(String typeName) {
this.typeName = typeName;
return self();
}
/**
* @see Policy#getAttributes()
*/
public T attributes(Multimap<String, Object> attributes) {
this.attributes.putAll(checkNotNull(attributes, "attributes"));
return self();
}
/**
* @see Policy#getAttributes()
*/
public T attribute(String key, Object value) {
this.attributes.put(checkNotNull(key, "key"), checkNotNull(value, "value"));
return self();
}
public Policy build() {
return new Policy(name, typeName, attributes.build());
}
public T fromPolicy(Policy in) {
return this.name(in.getName()).typeName(in.getTypeName()).attributes(in.getAttributes());
}
}
private static class ConcreteBuilder extends Builder<ConcreteBuilder> {
@Override
protected ConcreteBuilder self() {
return this;
}
}
protected final String name;
protected final String typeName;
protected final Multimap<String, Object> attributes;
protected Policy(String name, String typeName, Multimap<String, Object> attributes) {
this.name = checkNotNull(name, "name");
this.typeName = checkNotNull(typeName, "typeName");
this.attributes = ImmutableMultimap.copyOf(checkNotNull(attributes, "attributes"));
}
/**
* The name of the policy associated with the LoadBalancer
*/
public String getName() {
return name;
}
/**
* The name of the policy type associated with the LoadBalancer.
*/
public String getTypeName() {
return typeName;
}
/**
* A list of policy attribute description structures. Note that values are either Long, Boolean,
* or String, depending on {@link AttributeMetadata#getType()}
*/
public Multimap<String, Object> getAttributes() {
return attributes;
}
/**
* {@inheritDoc}
*/
@Override
public int hashCode() {
return Objects.hashCode(name, typeName);
}
/**
* {@inheritDoc}
*/
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Policy other = (Policy) obj;
return Objects.equal(this.name, other.name) && Objects.equal(this.typeName, other.typeName);
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return Objects.toStringHelper(this).omitNullValues().add("name", name).add("typeName", typeName)
.add("attributes", attributes).toString();
}
}