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

software.amazon.awssdk.services.auditmanager.model.Framework Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Audit Manager module holds the client classes that are used for communicating with Audit Manager.

There is a newer version: 2.28.4
Show newest version
/*
 * 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.auditmanager.model;

import java.io.Serializable;
import java.time.Instant;
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;

/**
 * 

* The file that's used to structure and automate Audit Manager assessments for a given compliance standard. *

*/ @Generated("software.amazon.awssdk:codegen") public final class Framework implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField ARN_FIELD = SdkField. builder(MarshallingType.STRING).memberName("arn") .getter(getter(Framework::arn)).setter(setter(Builder::arn)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("arn").build()).build(); private static final SdkField ID_FIELD = SdkField. builder(MarshallingType.STRING).memberName("id") .getter(getter(Framework::id)).setter(setter(Builder::id)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("id").build()).build(); private static final SdkField NAME_FIELD = SdkField. builder(MarshallingType.STRING).memberName("name") .getter(getter(Framework::name)).setter(setter(Builder::name)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("name").build()).build(); private static final SdkField TYPE_FIELD = SdkField. builder(MarshallingType.STRING).memberName("type") .getter(getter(Framework::typeAsString)).setter(setter(Builder::type)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("type").build()).build(); private static final SdkField COMPLIANCE_TYPE_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("complianceType").getter(getter(Framework::complianceType)).setter(setter(Builder::complianceType)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("complianceType").build()).build(); private static final SdkField DESCRIPTION_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("description").getter(getter(Framework::description)).setter(setter(Builder::description)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("description").build()).build(); private static final SdkField LOGO_FIELD = SdkField. builder(MarshallingType.STRING).memberName("logo") .getter(getter(Framework::logo)).setter(setter(Builder::logo)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("logo").build()).build(); private static final SdkField CONTROL_SOURCES_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("controlSources").getter(getter(Framework::controlSources)).setter(setter(Builder::controlSources)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("controlSources").build()).build(); private static final SdkField> CONTROL_SETS_FIELD = SdkField .> builder(MarshallingType.LIST) .memberName("controlSets") .getter(getter(Framework::controlSets)) .setter(setter(Builder::controlSets)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("controlSets").build(), ListTrait .builder() .memberLocationName(null) .memberFieldInfo( SdkField. builder(MarshallingType.SDK_POJO) .constructor(ControlSet::builder) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) .locationName("member").build()).build()).build()).build(); private static final SdkField CREATED_AT_FIELD = SdkField. builder(MarshallingType.INSTANT) .memberName("createdAt").getter(getter(Framework::createdAt)).setter(setter(Builder::createdAt)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("createdAt").build()).build(); private static final SdkField LAST_UPDATED_AT_FIELD = SdkField. builder(MarshallingType.INSTANT) .memberName("lastUpdatedAt").getter(getter(Framework::lastUpdatedAt)).setter(setter(Builder::lastUpdatedAt)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("lastUpdatedAt").build()).build(); private static final SdkField CREATED_BY_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("createdBy").getter(getter(Framework::createdBy)).setter(setter(Builder::createdBy)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("createdBy").build()).build(); private static final SdkField LAST_UPDATED_BY_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("lastUpdatedBy").getter(getter(Framework::lastUpdatedBy)).setter(setter(Builder::lastUpdatedBy)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("lastUpdatedBy").build()).build(); private static final SdkField> TAGS_FIELD = SdkField .> builder(MarshallingType.MAP) .memberName("tags") .getter(getter(Framework::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(ARN_FIELD, ID_FIELD, NAME_FIELD, TYPE_FIELD, COMPLIANCE_TYPE_FIELD, DESCRIPTION_FIELD, LOGO_FIELD, CONTROL_SOURCES_FIELD, CONTROL_SETS_FIELD, CREATED_AT_FIELD, LAST_UPDATED_AT_FIELD, CREATED_BY_FIELD, LAST_UPDATED_BY_FIELD, TAGS_FIELD)); private static final long serialVersionUID = 1L; private final String arn; private final String id; private final String name; private final String type; private final String complianceType; private final String description; private final String logo; private final String controlSources; private final List controlSets; private final Instant createdAt; private final Instant lastUpdatedAt; private final String createdBy; private final String lastUpdatedBy; private final Map tags; private Framework(BuilderImpl builder) { this.arn = builder.arn; this.id = builder.id; this.name = builder.name; this.type = builder.type; this.complianceType = builder.complianceType; this.description = builder.description; this.logo = builder.logo; this.controlSources = builder.controlSources; this.controlSets = builder.controlSets; this.createdAt = builder.createdAt; this.lastUpdatedAt = builder.lastUpdatedAt; this.createdBy = builder.createdBy; this.lastUpdatedBy = builder.lastUpdatedBy; this.tags = builder.tags; } /** *

* The Amazon Resource Name (ARN) of the framework. *

* * @return The Amazon Resource Name (ARN) of the framework. */ public final String arn() { return arn; } /** *

* The unique identifier for the framework. *

* * @return The unique identifier for the framework. */ public final String id() { return id; } /** *

* The name of the framework. *

* * @return The name of the framework. */ public final String name() { return name; } /** *

* Specifies whether the framework is a standard framework or a custom framework. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #type} will return * {@link FrameworkType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #typeAsString}. *

* * @return Specifies whether the framework is a standard framework or a custom framework. * @see FrameworkType */ public final FrameworkType type() { return FrameworkType.fromValue(type); } /** *

* Specifies whether the framework is a standard framework or a custom framework. *

*

* If the service returns an enum value that is not available in the current SDK version, {@link #type} will return * {@link FrameworkType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #typeAsString}. *

* * @return Specifies whether the framework is a standard framework or a custom framework. * @see FrameworkType */ public final String typeAsString() { return type; } /** *

* The compliance type that the framework supports, such as CIS or HIPAA. *

* * @return The compliance type that the framework supports, such as CIS or HIPAA. */ public final String complianceType() { return complianceType; } /** *

* The description of the framework. *

* * @return The description of the framework. */ public final String description() { return description; } /** *

* The logo that's associated with the framework. *

* * @return The logo that's associated with the framework. */ public final String logo() { return logo; } /** *

* The control data sources where Audit Manager collects evidence from. *

* * @return The control data sources where Audit Manager collects evidence from. */ public final String controlSources() { return controlSources; } /** * For responses, this returns true if the service returned a value for the ControlSets 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 hasControlSets() { return controlSets != null && !(controlSets instanceof SdkAutoConstructList); } /** *

* The control sets that are associated with the framework. *

*

* 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 #hasControlSets} method. *

* * @return The control sets that are associated with the framework. */ public final List controlSets() { return controlSets; } /** *

* The time when the framework was created. *

* * @return The time when the framework was created. */ public final Instant createdAt() { return createdAt; } /** *

* The time when the framework was most recently updated. *

* * @return The time when the framework was most recently updated. */ public final Instant lastUpdatedAt() { return lastUpdatedAt; } /** *

* The user or role that created the framework. *

* * @return The user or role that created the framework. */ public final String createdBy() { return createdBy; } /** *

* The user or role that most recently updated the framework. *

* * @return The user or role that most recently updated the framework. */ public final String lastUpdatedBy() { return lastUpdatedBy; } /** * 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 that are associated with the framework. *

*

* 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 that are associated with the framework. */ public final Map tags() { return tags; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(arn()); hashCode = 31 * hashCode + Objects.hashCode(id()); hashCode = 31 * hashCode + Objects.hashCode(name()); hashCode = 31 * hashCode + Objects.hashCode(typeAsString()); hashCode = 31 * hashCode + Objects.hashCode(complianceType()); hashCode = 31 * hashCode + Objects.hashCode(description()); hashCode = 31 * hashCode + Objects.hashCode(logo()); hashCode = 31 * hashCode + Objects.hashCode(controlSources()); hashCode = 31 * hashCode + Objects.hashCode(hasControlSets() ? controlSets() : null); hashCode = 31 * hashCode + Objects.hashCode(createdAt()); hashCode = 31 * hashCode + Objects.hashCode(lastUpdatedAt()); hashCode = 31 * hashCode + Objects.hashCode(createdBy()); hashCode = 31 * hashCode + Objects.hashCode(lastUpdatedBy()); 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 Framework)) { return false; } Framework other = (Framework) obj; return Objects.equals(arn(), other.arn()) && Objects.equals(id(), other.id()) && Objects.equals(name(), other.name()) && Objects.equals(typeAsString(), other.typeAsString()) && Objects.equals(complianceType(), other.complianceType()) && Objects.equals(description(), other.description()) && Objects.equals(logo(), other.logo()) && Objects.equals(controlSources(), other.controlSources()) && hasControlSets() == other.hasControlSets() && Objects.equals(controlSets(), other.controlSets()) && Objects.equals(createdAt(), other.createdAt()) && Objects.equals(lastUpdatedAt(), other.lastUpdatedAt()) && Objects.equals(createdBy(), other.createdBy()) && Objects.equals(lastUpdatedBy(), other.lastUpdatedBy()) && 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("Framework").add("Arn", arn()).add("Id", id()).add("Name", name()).add("Type", typeAsString()) .add("ComplianceType", complianceType() == null ? null : "*** Sensitive Data Redacted ***") .add("Description", description()).add("Logo", logo()).add("ControlSources", controlSources()) .add("ControlSets", controlSets() == null ? null : "*** Sensitive Data Redacted ***") .add("CreatedAt", createdAt()).add("LastUpdatedAt", lastUpdatedAt()) .add("CreatedBy", createdBy() == null ? null : "*** Sensitive Data Redacted ***") .add("LastUpdatedBy", lastUpdatedBy() == null ? null : "*** Sensitive Data Redacted ***") .add("Tags", hasTags() ? tags() : null).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "arn": return Optional.ofNullable(clazz.cast(arn())); case "id": return Optional.ofNullable(clazz.cast(id())); case "name": return Optional.ofNullable(clazz.cast(name())); case "type": return Optional.ofNullable(clazz.cast(typeAsString())); case "complianceType": return Optional.ofNullable(clazz.cast(complianceType())); case "description": return Optional.ofNullable(clazz.cast(description())); case "logo": return Optional.ofNullable(clazz.cast(logo())); case "controlSources": return Optional.ofNullable(clazz.cast(controlSources())); case "controlSets": return Optional.ofNullable(clazz.cast(controlSets())); case "createdAt": return Optional.ofNullable(clazz.cast(createdAt())); case "lastUpdatedAt": return Optional.ofNullable(clazz.cast(lastUpdatedAt())); case "createdBy": return Optional.ofNullable(clazz.cast(createdBy())); case "lastUpdatedBy": return Optional.ofNullable(clazz.cast(lastUpdatedBy())); 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((Framework) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The Amazon Resource Name (ARN) of the framework. *

* * @param arn * The Amazon Resource Name (ARN) of the framework. * @return Returns a reference to this object so that method calls can be chained together. */ Builder arn(String arn); /** *

* The unique identifier for the framework. *

* * @param id * The unique identifier for the framework. * @return Returns a reference to this object so that method calls can be chained together. */ Builder id(String id); /** *

* The name of the framework. *

* * @param name * The name of the framework. * @return Returns a reference to this object so that method calls can be chained together. */ Builder name(String name); /** *

* Specifies whether the framework is a standard framework or a custom framework. *

* * @param type * Specifies whether the framework is a standard framework or a custom framework. * @see FrameworkType * @return Returns a reference to this object so that method calls can be chained together. * @see FrameworkType */ Builder type(String type); /** *

* Specifies whether the framework is a standard framework or a custom framework. *

* * @param type * Specifies whether the framework is a standard framework or a custom framework. * @see FrameworkType * @return Returns a reference to this object so that method calls can be chained together. * @see FrameworkType */ Builder type(FrameworkType type); /** *

* The compliance type that the framework supports, such as CIS or HIPAA. *

* * @param complianceType * The compliance type that the framework supports, such as CIS or HIPAA. * @return Returns a reference to this object so that method calls can be chained together. */ Builder complianceType(String complianceType); /** *

* The description of the framework. *

* * @param description * The description of the framework. * @return Returns a reference to this object so that method calls can be chained together. */ Builder description(String description); /** *

* The logo that's associated with the framework. *

* * @param logo * The logo that's associated with the framework. * @return Returns a reference to this object so that method calls can be chained together. */ Builder logo(String logo); /** *

* The control data sources where Audit Manager collects evidence from. *

* * @param controlSources * The control data sources where Audit Manager collects evidence from. * @return Returns a reference to this object so that method calls can be chained together. */ Builder controlSources(String controlSources); /** *

* The control sets that are associated with the framework. *

* * @param controlSets * The control sets that are associated with the framework. * @return Returns a reference to this object so that method calls can be chained together. */ Builder controlSets(Collection controlSets); /** *

* The control sets that are associated with the framework. *

* * @param controlSets * The control sets that are associated with the framework. * @return Returns a reference to this object so that method calls can be chained together. */ Builder controlSets(ControlSet... controlSets); /** *

* The control sets that are associated with the framework. *

* This is a convenience method that creates an instance of the * {@link software.amazon.awssdk.services.auditmanager.model.ControlSet.Builder} avoiding the need to create one * manually via {@link software.amazon.awssdk.services.auditmanager.model.ControlSet#builder()}. * *

* When the {@link Consumer} completes, * {@link software.amazon.awssdk.services.auditmanager.model.ControlSet.Builder#build()} is called immediately * and its result is passed to {@link #controlSets(List)}. * * @param controlSets * a consumer that will call methods on * {@link software.amazon.awssdk.services.auditmanager.model.ControlSet.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #controlSets(java.util.Collection) */ Builder controlSets(Consumer... controlSets); /** *

* The time when the framework was created. *

* * @param createdAt * The time when the framework was created. * @return Returns a reference to this object so that method calls can be chained together. */ Builder createdAt(Instant createdAt); /** *

* The time when the framework was most recently updated. *

* * @param lastUpdatedAt * The time when the framework was most recently updated. * @return Returns a reference to this object so that method calls can be chained together. */ Builder lastUpdatedAt(Instant lastUpdatedAt); /** *

* The user or role that created the framework. *

* * @param createdBy * The user or role that created the framework. * @return Returns a reference to this object so that method calls can be chained together. */ Builder createdBy(String createdBy); /** *

* The user or role that most recently updated the framework. *

* * @param lastUpdatedBy * The user or role that most recently updated the framework. * @return Returns a reference to this object so that method calls can be chained together. */ Builder lastUpdatedBy(String lastUpdatedBy); /** *

* The tags that are associated with the framework. *

* * @param tags * The tags that are associated with the framework. * @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 arn; private String id; private String name; private String type; private String complianceType; private String description; private String logo; private String controlSources; private List controlSets = DefaultSdkAutoConstructList.getInstance(); private Instant createdAt; private Instant lastUpdatedAt; private String createdBy; private String lastUpdatedBy; private Map tags = DefaultSdkAutoConstructMap.getInstance(); private BuilderImpl() { } private BuilderImpl(Framework model) { arn(model.arn); id(model.id); name(model.name); type(model.type); complianceType(model.complianceType); description(model.description); logo(model.logo); controlSources(model.controlSources); controlSets(model.controlSets); createdAt(model.createdAt); lastUpdatedAt(model.lastUpdatedAt); createdBy(model.createdBy); lastUpdatedBy(model.lastUpdatedBy); tags(model.tags); } public final String getArn() { return arn; } public final void setArn(String arn) { this.arn = arn; } @Override public final Builder arn(String arn) { this.arn = arn; return this; } public final String getId() { return id; } public final void setId(String id) { this.id = id; } @Override public final Builder id(String id) { this.id = id; 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 getType() { return type; } public final void setType(String type) { this.type = type; } @Override public final Builder type(String type) { this.type = type; return this; } @Override public final Builder type(FrameworkType type) { this.type(type == null ? null : type.toString()); return this; } public final String getComplianceType() { return complianceType; } public final void setComplianceType(String complianceType) { this.complianceType = complianceType; } @Override public final Builder complianceType(String complianceType) { this.complianceType = complianceType; 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 getLogo() { return logo; } public final void setLogo(String logo) { this.logo = logo; } @Override public final Builder logo(String logo) { this.logo = logo; return this; } public final String getControlSources() { return controlSources; } public final void setControlSources(String controlSources) { this.controlSources = controlSources; } @Override public final Builder controlSources(String controlSources) { this.controlSources = controlSources; return this; } public final List getControlSets() { List result = ControlSetsCopier.copyToBuilder(this.controlSets); if (result instanceof SdkAutoConstructList) { return null; } return result; } public final void setControlSets(Collection controlSets) { this.controlSets = ControlSetsCopier.copyFromBuilder(controlSets); } @Override public final Builder controlSets(Collection controlSets) { this.controlSets = ControlSetsCopier.copy(controlSets); return this; } @Override @SafeVarargs public final Builder controlSets(ControlSet... controlSets) { controlSets(Arrays.asList(controlSets)); return this; } @Override @SafeVarargs public final Builder controlSets(Consumer... controlSets) { controlSets(Stream.of(controlSets).map(c -> ControlSet.builder().applyMutation(c).build()) .collect(Collectors.toList())); return this; } public final Instant getCreatedAt() { return createdAt; } public final void setCreatedAt(Instant createdAt) { this.createdAt = createdAt; } @Override public final Builder createdAt(Instant createdAt) { this.createdAt = createdAt; return this; } public final Instant getLastUpdatedAt() { return lastUpdatedAt; } public final void setLastUpdatedAt(Instant lastUpdatedAt) { this.lastUpdatedAt = lastUpdatedAt; } @Override public final Builder lastUpdatedAt(Instant lastUpdatedAt) { this.lastUpdatedAt = lastUpdatedAt; return this; } public final String getCreatedBy() { return createdBy; } public final void setCreatedBy(String createdBy) { this.createdBy = createdBy; } @Override public final Builder createdBy(String createdBy) { this.createdBy = createdBy; return this; } public final String getLastUpdatedBy() { return lastUpdatedBy; } public final void setLastUpdatedBy(String lastUpdatedBy) { this.lastUpdatedBy = lastUpdatedBy; } @Override public final Builder lastUpdatedBy(String lastUpdatedBy) { this.lastUpdatedBy = lastUpdatedBy; 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 Framework build() { return new Framework(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy