blob: 7c11642264112ddca908e225d0ccd5a330552b37 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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.azurecompute.arm.compute.domain;
import static org.jclouds.azurecompute.arm.compute.domain.ResourceGroupAndName.fromResourceGroupAndName;
import java.util.Arrays;
import com.google.auto.value.AutoValue;
import com.google.common.base.Objects;
@AutoValue
public abstract class ResourceGroupAndNameAndIngressRules {
abstract ResourceGroupAndName resourceGroupAndName(); // Intentionally hidden
public abstract String location();
@SuppressWarnings("mutable")
public abstract int[] inboundPorts();
ResourceGroupAndNameAndIngressRules() {
}
public static ResourceGroupAndNameAndIngressRules create(String resourceGroup, String location, String name,
int[] inboundPorts) {
return new AutoValue_ResourceGroupAndNameAndIngressRules(fromResourceGroupAndName(resourceGroup, name), location,
Arrays.copyOf(inboundPorts, inboundPorts.length));
}
public String name() {
return resourceGroupAndName().name();
}
public String resourceGroup() {
return resourceGroupAndName().resourceGroup();
}
// Intentionally delegate equals and hashcode to the fields in the parent
// class so that we can search only by region/id in a map
@Override
public int hashCode() {
return Objects.hashCode(resourceGroup(), name());
}
@Override
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof ResourceGroupAndName)) {
return false;
}
ResourceGroupAndName that = (ResourceGroupAndName) obj;
return Objects.equal(resourceGroup(), that.resourceGroup()) && Objects.equal(name(), that.name());
}
}