software.amazon.awssdk.services.dax.endpoints.internal.Partition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dax Show documentation
Show all versions of dax Show documentation
The AWS Java SDK for Amazon DynamoDB Accelerator (DAX) module holds the client classes that are used
for
communicating with Amazon DynamoDB Accelerator (DAX).
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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 software.amazon.awssdk.services.dax.endpoints.internal;
import java.util.HashMap;
import java.util.Map;
import software.amazon.awssdk.annotations.SdkInternalApi;
import software.amazon.awssdk.protocols.jsoncore.JsonNode;
import software.amazon.awssdk.utils.ToString;
@SdkInternalApi
public class Partition {
private static final String ID = "id";
private static final String REGION_REGEX = "regionRegex";
private static final String REGIONS = "regions";
private static final String OUTPUTS = "outputs";
private final String id;
private final String regionRegex;
private final Map regions;
private final Outputs outputs;
private Partition(Builder builder) {
this.id = builder.id;
this.regionRegex = builder.regionRegex;
this.regions = new HashMap<>(builder.regions);
this.outputs = builder.outputs;
}
public String id() {
return id;
}
public String regionRegex() {
return regionRegex;
}
public Map regions() {
return regions;
}
public Outputs outputs() {
return outputs;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Partition partition = (Partition) o;
if (id != null ? !id.equals(partition.id) : partition.id != null) {
return false;
}
if (regionRegex != null ? !regionRegex.equals(partition.regionRegex) : partition.regionRegex != null) {
return false;
}
if (regions != null ? !regions.equals(partition.regions) : partition.regions != null) {
return false;
}
return outputs != null ? outputs.equals(partition.outputs) : partition.outputs == null;
}
@Override
public int hashCode() {
int result = id != null ? id.hashCode() : 0;
result = 31 * result + (regionRegex != null ? regionRegex.hashCode() : 0);
result = 31 * result + (regions != null ? regions.hashCode() : 0);
result = 31 * result + (outputs != null ? outputs.hashCode() : 0);
return result;
}
@Override
public String toString() {
return ToString.builder("Partition").add("id", id).add("regionRegex", regionRegex).add("regions", regions.keySet())
.add("outputs", outputs).build();
}
public static Builder builder() {
return new Builder();
}
public static Partition fromNode(JsonNode node) {
Builder b = builder();
Map objNode = node.asObject();
JsonNode id = objNode.get(ID);
if (id != null) {
b.id(id.asString());
}
JsonNode regionRegex = objNode.get(REGION_REGEX);
if (regionRegex != null) {
b.regionRegex(regionRegex.asString());
}
JsonNode regions = objNode.get(REGIONS);
if (regions != null) {
Map regionsObj = regions.asObject();
regionsObj.forEach((k, v) -> b.putRegion(k, RegionOverride.fromNode(v)));
}
JsonNode outputs = objNode.get(OUTPUTS);
if (outputs != null) {
b.outputs(Outputs.fromNode(outputs));
}
return b.build();
}
public static class Builder {
private String id;
private String regionRegex;
private Map regions = new HashMap<>();
private Outputs outputs;
public Builder id(String id) {
this.id = id;
return this;
}
public Builder regionRegex(String regionRegex) {
this.regionRegex = regionRegex;
return this;
}
public Builder regions(Map regions) {
this.regions.clear();
if (regions != null) {
this.regions.putAll(regions);
}
return this;
}
public Builder putRegion(String name, RegionOverride regionOverride) {
regions.put(name, regionOverride);
return this;
}
public Builder outputs(Outputs outputs) {
this.outputs = outputs;
return this;
}
public Partition build() {
return new Partition(this);
}
}
}