Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
software.amazon.awssdk.services.connect.model.HoursOfOperation Maven / Gradle / Ivy
Go to download
The AWS Java SDK for Connect module holds the client classes that are used for
communicating with Connect.
/*
* 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.connect.model;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.ListTrait;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.core.traits.MapTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructList;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructMap;
import software.amazon.awssdk.core.util.SdkAutoConstructList;
import software.amazon.awssdk.core.util.SdkAutoConstructMap;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* Information about of the hours of operation.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class HoursOfOperation implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField HOURS_OF_OPERATION_ID_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("HoursOfOperationId").getter(getter(HoursOfOperation::hoursOfOperationId))
.setter(setter(Builder::hoursOfOperationId))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("HoursOfOperationId").build())
.build();
private static final SdkField HOURS_OF_OPERATION_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("HoursOfOperationArn").getter(getter(HoursOfOperation::hoursOfOperationArn))
.setter(setter(Builder::hoursOfOperationArn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("HoursOfOperationArn").build())
.build();
private static final SdkField NAME_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Name")
.getter(getter(HoursOfOperation::name)).setter(setter(Builder::name))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Name").build()).build();
private static final SdkField DESCRIPTION_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("Description").getter(getter(HoursOfOperation::description)).setter(setter(Builder::description))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Description").build()).build();
private static final SdkField TIME_ZONE_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("TimeZone").getter(getter(HoursOfOperation::timeZone)).setter(setter(Builder::timeZone))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TimeZone").build()).build();
private static final SdkField> CONFIG_FIELD = SdkField
.> builder(MarshallingType.LIST)
.memberName("Config")
.getter(getter(HoursOfOperation::config))
.setter(setter(Builder::config))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Config").build(),
ListTrait
.builder()
.memberLocationName(null)
.memberFieldInfo(
SdkField. builder(MarshallingType.SDK_POJO)
.constructor(HoursOfOperationConfig::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
.locationName("member").build()).build()).build()).build();
private static final SdkField> TAGS_FIELD = SdkField
.> builder(MarshallingType.MAP)
.memberName("Tags")
.getter(getter(HoursOfOperation::tags))
.setter(setter(Builder::tags))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Tags").build(),
MapTrait.builder()
.keyLocationName("key")
.valueLocationName("value")
.valueFieldInfo(
SdkField. builder(MarshallingType.STRING)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
.locationName("value").build()).build()).build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(HOURS_OF_OPERATION_ID_FIELD,
HOURS_OF_OPERATION_ARN_FIELD, NAME_FIELD, DESCRIPTION_FIELD, TIME_ZONE_FIELD, CONFIG_FIELD, TAGS_FIELD));
private static final long serialVersionUID = 1L;
private final String hoursOfOperationId;
private final String hoursOfOperationArn;
private final String name;
private final String description;
private final String timeZone;
private final List config;
private final Map tags;
private HoursOfOperation(BuilderImpl builder) {
this.hoursOfOperationId = builder.hoursOfOperationId;
this.hoursOfOperationArn = builder.hoursOfOperationArn;
this.name = builder.name;
this.description = builder.description;
this.timeZone = builder.timeZone;
this.config = builder.config;
this.tags = builder.tags;
}
/**
*
* The identifier for the hours of operation.
*
*
* @return The identifier for the hours of operation.
*/
public final String hoursOfOperationId() {
return hoursOfOperationId;
}
/**
*
* The Amazon Resource Name (ARN) for the hours of operation.
*
*
* @return The Amazon Resource Name (ARN) for the hours of operation.
*/
public final String hoursOfOperationArn() {
return hoursOfOperationArn;
}
/**
*
* The name for the hours of operation.
*
*
* @return The name for the hours of operation.
*/
public final String name() {
return name;
}
/**
*
* The description for the hours of operation.
*
*
* @return The description for the hours of operation.
*/
public final String description() {
return description;
}
/**
*
* The time zone for the hours of operation.
*
*
* @return The time zone for the hours of operation.
*/
public final String timeZone() {
return timeZone;
}
/**
* For responses, this returns true if the service returned a value for the Config property. This DOES NOT check
* that the value is non-empty (for which, you should check the {@code isEmpty()} method on the property). This is
* useful because the SDK will never return a null collection or map, but you may need to differentiate between the
* service returning nothing (or null) and the service returning an empty collection or map. For requests, this
* returns true if a value for the property was specified in the request builder, and false if a value was not
* specified.
*/
public final boolean hasConfig() {
return config != null && !(config instanceof SdkAutoConstructList);
}
/**
*
* Configuration information for the hours of operation.
*
*
* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
*
*
* This method will never return null. If you would like to know whether the service returned this field (so that
* you can differentiate between null and empty), you can use the {@link #hasConfig} method.
*
*
* @return Configuration information for the hours of operation.
*/
public final List config() {
return config;
}
/**
* For responses, this returns true if the service returned a value for the Tags property. This DOES NOT check that
* the value is non-empty (for which, you should check the {@code isEmpty()} method on the property). This is useful
* because the SDK will never return a null collection or map, but you may need to differentiate between the service
* returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true
* if a value for the property was specified in the request builder, and false if a value was not specified.
*/
public final boolean hasTags() {
return tags != null && !(tags instanceof SdkAutoConstructMap);
}
/**
*
* The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1",
* "key2":"value2"} }.
*
*
* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
*
*
* This method will never return null. If you would like to know whether the service returned this field (so that
* you can differentiate between null and empty), you can use the {@link #hasTags} method.
*
*
* @return The tags used to organize, track, or control access for this resource. For example, { "tags":
* {"key1":"value1", "key2":"value2"} }.
*/
public final Map tags() {
return tags;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public final int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + Objects.hashCode(hoursOfOperationId());
hashCode = 31 * hashCode + Objects.hashCode(hoursOfOperationArn());
hashCode = 31 * hashCode + Objects.hashCode(name());
hashCode = 31 * hashCode + Objects.hashCode(description());
hashCode = 31 * hashCode + Objects.hashCode(timeZone());
hashCode = 31 * hashCode + Objects.hashCode(hasConfig() ? config() : null);
hashCode = 31 * hashCode + Objects.hashCode(hasTags() ? tags() : null);
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof HoursOfOperation)) {
return false;
}
HoursOfOperation other = (HoursOfOperation) obj;
return Objects.equals(hoursOfOperationId(), other.hoursOfOperationId())
&& Objects.equals(hoursOfOperationArn(), other.hoursOfOperationArn()) && Objects.equals(name(), other.name())
&& Objects.equals(description(), other.description()) && Objects.equals(timeZone(), other.timeZone())
&& hasConfig() == other.hasConfig() && Objects.equals(config(), other.config()) && hasTags() == other.hasTags()
&& Objects.equals(tags(), other.tags());
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public final String toString() {
return ToString.builder("HoursOfOperation").add("HoursOfOperationId", hoursOfOperationId())
.add("HoursOfOperationArn", hoursOfOperationArn()).add("Name", name()).add("Description", description())
.add("TimeZone", timeZone()).add("Config", hasConfig() ? config() : null).add("Tags", hasTags() ? tags() : null)
.build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "HoursOfOperationId":
return Optional.ofNullable(clazz.cast(hoursOfOperationId()));
case "HoursOfOperationArn":
return Optional.ofNullable(clazz.cast(hoursOfOperationArn()));
case "Name":
return Optional.ofNullable(clazz.cast(name()));
case "Description":
return Optional.ofNullable(clazz.cast(description()));
case "TimeZone":
return Optional.ofNullable(clazz.cast(timeZone()));
case "Config":
return Optional.ofNullable(clazz.cast(config()));
case "Tags":
return Optional.ofNullable(clazz.cast(tags()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function getter(Function g) {
return obj -> g.apply((HoursOfOperation) obj);
}
private static BiConsumer setter(BiConsumer s) {
return (obj, val) -> s.accept((Builder) obj, val);
}
public interface Builder extends SdkPojo, CopyableBuilder {
/**
*
* The identifier for the hours of operation.
*
*
* @param hoursOfOperationId
* The identifier for the hours of operation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder hoursOfOperationId(String hoursOfOperationId);
/**
*
* The Amazon Resource Name (ARN) for the hours of operation.
*
*
* @param hoursOfOperationArn
* The Amazon Resource Name (ARN) for the hours of operation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder hoursOfOperationArn(String hoursOfOperationArn);
/**
*
* The name for the hours of operation.
*
*
* @param name
* The name for the hours of operation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder name(String name);
/**
*
* The description for the hours of operation.
*
*
* @param description
* The description for the hours of operation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder description(String description);
/**
*
* The time zone for the hours of operation.
*
*
* @param timeZone
* The time zone for the hours of operation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder timeZone(String timeZone);
/**
*
* Configuration information for the hours of operation.
*
*
* @param config
* Configuration information for the hours of operation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder config(Collection config);
/**
*
* Configuration information for the hours of operation.
*
*
* @param config
* Configuration information for the hours of operation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder config(HoursOfOperationConfig... config);
/**
*
* Configuration information for the hours of operation.
*
* This is a convenience method that creates an instance of the
* {@link software.amazon.awssdk.services.connect.model.HoursOfOperationConfig.Builder} avoiding the need to
* create one manually via
* {@link software.amazon.awssdk.services.connect.model.HoursOfOperationConfig#builder()}.
*
*
* When the {@link Consumer} completes,
* {@link software.amazon.awssdk.services.connect.model.HoursOfOperationConfig.Builder#build()} is called
* immediately and its result is passed to {@link #config(List)}.
*
* @param config
* a consumer that will call methods on
* {@link software.amazon.awssdk.services.connect.model.HoursOfOperationConfig.Builder}
* @return Returns a reference to this object so that method calls can be chained together.
* @see #config(java.util.Collection)
*/
Builder config(Consumer... config);
/**
*
* The tags used to organize, track, or control access for this resource. For example, { "tags":
* {"key1":"value1", "key2":"value2"} }.
*
*
* @param tags
* The tags used to organize, track, or control access for this resource. For example, { "tags":
* {"key1":"value1", "key2":"value2"} }.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder tags(Map tags);
}
static final class BuilderImpl implements Builder {
private String hoursOfOperationId;
private String hoursOfOperationArn;
private String name;
private String description;
private String timeZone;
private List config = DefaultSdkAutoConstructList.getInstance();
private Map tags = DefaultSdkAutoConstructMap.getInstance();
private BuilderImpl() {
}
private BuilderImpl(HoursOfOperation model) {
hoursOfOperationId(model.hoursOfOperationId);
hoursOfOperationArn(model.hoursOfOperationArn);
name(model.name);
description(model.description);
timeZone(model.timeZone);
config(model.config);
tags(model.tags);
}
public final String getHoursOfOperationId() {
return hoursOfOperationId;
}
public final void setHoursOfOperationId(String hoursOfOperationId) {
this.hoursOfOperationId = hoursOfOperationId;
}
@Override
public final Builder hoursOfOperationId(String hoursOfOperationId) {
this.hoursOfOperationId = hoursOfOperationId;
return this;
}
public final String getHoursOfOperationArn() {
return hoursOfOperationArn;
}
public final void setHoursOfOperationArn(String hoursOfOperationArn) {
this.hoursOfOperationArn = hoursOfOperationArn;
}
@Override
public final Builder hoursOfOperationArn(String hoursOfOperationArn) {
this.hoursOfOperationArn = hoursOfOperationArn;
return this;
}
public final String getName() {
return name;
}
public final void setName(String name) {
this.name = name;
}
@Override
public final Builder name(String name) {
this.name = name;
return this;
}
public final String getDescription() {
return description;
}
public final void setDescription(String description) {
this.description = description;
}
@Override
public final Builder description(String description) {
this.description = description;
return this;
}
public final String getTimeZone() {
return timeZone;
}
public final void setTimeZone(String timeZone) {
this.timeZone = timeZone;
}
@Override
public final Builder timeZone(String timeZone) {
this.timeZone = timeZone;
return this;
}
public final List getConfig() {
List result = HoursOfOperationConfigListCopier.copyToBuilder(this.config);
if (result instanceof SdkAutoConstructList) {
return null;
}
return result;
}
public final void setConfig(Collection config) {
this.config = HoursOfOperationConfigListCopier.copyFromBuilder(config);
}
@Override
public final Builder config(Collection config) {
this.config = HoursOfOperationConfigListCopier.copy(config);
return this;
}
@Override
@SafeVarargs
public final Builder config(HoursOfOperationConfig... config) {
config(Arrays.asList(config));
return this;
}
@Override
@SafeVarargs
public final Builder config(Consumer... config) {
config(Stream.of(config).map(c -> HoursOfOperationConfig.builder().applyMutation(c).build())
.collect(Collectors.toList()));
return this;
}
public final Map getTags() {
if (tags instanceof SdkAutoConstructMap) {
return null;
}
return tags;
}
public final void setTags(Map tags) {
this.tags = TagMapCopier.copy(tags);
}
@Override
public final Builder tags(Map tags) {
this.tags = TagMapCopier.copy(tags);
return this;
}
@Override
public HoursOfOperation build() {
return new HoursOfOperation(this);
}
@Override
public List> sdkFields() {
return SDK_FIELDS;
}
}
}