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

software.amazon.awssdk.services.transcribe.model.TranscriptionJob Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.29.39
Show newest version
/*
 * Copyright 2014-2019 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.transcribe.model;

import java.io.Serializable;
import java.time.Instant;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
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.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

* Describes an asynchronous transcription job that was created with the StartTranscriptionJob operation. *

*/ @Generated("software.amazon.awssdk:codegen") public final class TranscriptionJob implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField TRANSCRIPTION_JOB_NAME_FIELD = SdkField. builder(MarshallingType.STRING) .getter(getter(TranscriptionJob::transcriptionJobName)).setter(setter(Builder::transcriptionJobName)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TranscriptionJobName").build()) .build(); private static final SdkField TRANSCRIPTION_JOB_STATUS_FIELD = SdkField. builder(MarshallingType.STRING) .getter(getter(TranscriptionJob::transcriptionJobStatusAsString)).setter(setter(Builder::transcriptionJobStatus)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TranscriptionJobStatus").build()) .build(); private static final SdkField LANGUAGE_CODE_FIELD = SdkField. builder(MarshallingType.STRING) .getter(getter(TranscriptionJob::languageCodeAsString)).setter(setter(Builder::languageCode)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LanguageCode").build()).build(); private static final SdkField MEDIA_SAMPLE_RATE_HERTZ_FIELD = SdkField. builder(MarshallingType.INTEGER) .getter(getter(TranscriptionJob::mediaSampleRateHertz)).setter(setter(Builder::mediaSampleRateHertz)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MediaSampleRateHertz").build()) .build(); private static final SdkField MEDIA_FORMAT_FIELD = SdkField. builder(MarshallingType.STRING) .getter(getter(TranscriptionJob::mediaFormatAsString)).setter(setter(Builder::mediaFormat)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MediaFormat").build()).build(); private static final SdkField MEDIA_FIELD = SdkField. builder(MarshallingType.SDK_POJO) .getter(getter(TranscriptionJob::media)).setter(setter(Builder::media)).constructor(Media::builder) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Media").build()).build(); private static final SdkField TRANSCRIPT_FIELD = SdkField. builder(MarshallingType.SDK_POJO) .getter(getter(TranscriptionJob::transcript)).setter(setter(Builder::transcript)).constructor(Transcript::builder) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Transcript").build()).build(); private static final SdkField CREATION_TIME_FIELD = SdkField. builder(MarshallingType.INSTANT) .getter(getter(TranscriptionJob::creationTime)).setter(setter(Builder::creationTime)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CreationTime").build()).build(); private static final SdkField COMPLETION_TIME_FIELD = SdkField. builder(MarshallingType.INSTANT) .getter(getter(TranscriptionJob::completionTime)).setter(setter(Builder::completionTime)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CompletionTime").build()).build(); private static final SdkField FAILURE_REASON_FIELD = SdkField. builder(MarshallingType.STRING) .getter(getter(TranscriptionJob::failureReason)).setter(setter(Builder::failureReason)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("FailureReason").build()).build(); private static final SdkField SETTINGS_FIELD = SdkField. builder(MarshallingType.SDK_POJO) .getter(getter(TranscriptionJob::settings)).setter(setter(Builder::settings)).constructor(Settings::builder) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Settings").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(TRANSCRIPTION_JOB_NAME_FIELD, TRANSCRIPTION_JOB_STATUS_FIELD, LANGUAGE_CODE_FIELD, MEDIA_SAMPLE_RATE_HERTZ_FIELD, MEDIA_FORMAT_FIELD, MEDIA_FIELD, TRANSCRIPT_FIELD, CREATION_TIME_FIELD, COMPLETION_TIME_FIELD, FAILURE_REASON_FIELD, SETTINGS_FIELD)); private static final long serialVersionUID = 1L; private final String transcriptionJobName; private final String transcriptionJobStatus; private final String languageCode; private final Integer mediaSampleRateHertz; private final String mediaFormat; private final Media media; private final Transcript transcript; private final Instant creationTime; private final Instant completionTime; private final String failureReason; private final Settings settings; private TranscriptionJob(BuilderImpl builder) { this.transcriptionJobName = builder.transcriptionJobName; this.transcriptionJobStatus = builder.transcriptionJobStatus; this.languageCode = builder.languageCode; this.mediaSampleRateHertz = builder.mediaSampleRateHertz; this.mediaFormat = builder.mediaFormat; this.media = builder.media; this.transcript = builder.transcript; this.creationTime = builder.creationTime; this.completionTime = builder.completionTime; this.failureReason = builder.failureReason; this.settings = builder.settings; } /** *

* The name of the transcription job. *

* * @return The name of the transcription job. */ public String transcriptionJobName() { return transcriptionJobName; } /** *

* The status of the transcription job. *

*

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

* * @return The status of the transcription job. * @see TranscriptionJobStatus */ public TranscriptionJobStatus transcriptionJobStatus() { return TranscriptionJobStatus.fromValue(transcriptionJobStatus); } /** *

* The status of the transcription job. *

*

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

* * @return The status of the transcription job. * @see TranscriptionJobStatus */ public String transcriptionJobStatusAsString() { return transcriptionJobStatus; } /** *

* The language code for the input speech. *

*

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

* * @return The language code for the input speech. * @see LanguageCode */ public LanguageCode languageCode() { return LanguageCode.fromValue(languageCode); } /** *

* The language code for the input speech. *

*

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

* * @return The language code for the input speech. * @see LanguageCode */ public String languageCodeAsString() { return languageCode; } /** *

* The sample rate, in Hertz, of the audio track in the input media file. *

* * @return The sample rate, in Hertz, of the audio track in the input media file. */ public Integer mediaSampleRateHertz() { return mediaSampleRateHertz; } /** *

* The format of the input media file. *

*

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

* * @return The format of the input media file. * @see MediaFormat */ public MediaFormat mediaFormat() { return MediaFormat.fromValue(mediaFormat); } /** *

* The format of the input media file. *

*

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

* * @return The format of the input media file. * @see MediaFormat */ public String mediaFormatAsString() { return mediaFormat; } /** *

* An object that describes the input media for the transcription job. *

* * @return An object that describes the input media for the transcription job. */ public Media media() { return media; } /** *

* An object that describes the output of the transcription job. *

* * @return An object that describes the output of the transcription job. */ public Transcript transcript() { return transcript; } /** *

* A timestamp that shows when the job was created. *

* * @return A timestamp that shows when the job was created. */ public Instant creationTime() { return creationTime; } /** *

* A timestamp that shows when the job was completed. *

* * @return A timestamp that shows when the job was completed. */ public Instant completionTime() { return completionTime; } /** *

* If the TranscriptionJobStatus field is FAILED, this field contains information about * why the job failed. *

* * @return If the TranscriptionJobStatus field is FAILED, this field contains information * about why the job failed. */ public String failureReason() { return failureReason; } /** *

* Optional settings for the transcription job. Use these settings to turn on speaker recognition, to set the * maximum number of speakers that should be identified and to specify a custom vocabulary to use when processing * the transcription job. *

* * @return Optional settings for the transcription job. Use these settings to turn on speaker recognition, to set * the maximum number of speakers that should be identified and to specify a custom vocabulary to use when * processing the transcription job. */ public Settings settings() { return settings; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(transcriptionJobName()); hashCode = 31 * hashCode + Objects.hashCode(transcriptionJobStatusAsString()); hashCode = 31 * hashCode + Objects.hashCode(languageCodeAsString()); hashCode = 31 * hashCode + Objects.hashCode(mediaSampleRateHertz()); hashCode = 31 * hashCode + Objects.hashCode(mediaFormatAsString()); hashCode = 31 * hashCode + Objects.hashCode(media()); hashCode = 31 * hashCode + Objects.hashCode(transcript()); hashCode = 31 * hashCode + Objects.hashCode(creationTime()); hashCode = 31 * hashCode + Objects.hashCode(completionTime()); hashCode = 31 * hashCode + Objects.hashCode(failureReason()); hashCode = 31 * hashCode + Objects.hashCode(settings()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof TranscriptionJob)) { return false; } TranscriptionJob other = (TranscriptionJob) obj; return Objects.equals(transcriptionJobName(), other.transcriptionJobName()) && Objects.equals(transcriptionJobStatusAsString(), other.transcriptionJobStatusAsString()) && Objects.equals(languageCodeAsString(), other.languageCodeAsString()) && Objects.equals(mediaSampleRateHertz(), other.mediaSampleRateHertz()) && Objects.equals(mediaFormatAsString(), other.mediaFormatAsString()) && Objects.equals(media(), other.media()) && Objects.equals(transcript(), other.transcript()) && Objects.equals(creationTime(), other.creationTime()) && Objects.equals(completionTime(), other.completionTime()) && Objects.equals(failureReason(), other.failureReason()) && Objects.equals(settings(), other.settings()); } /** * 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 String toString() { return ToString.builder("TranscriptionJob").add("TranscriptionJobName", transcriptionJobName()) .add("TranscriptionJobStatus", transcriptionJobStatusAsString()).add("LanguageCode", languageCodeAsString()) .add("MediaSampleRateHertz", mediaSampleRateHertz()).add("MediaFormat", mediaFormatAsString()) .add("Media", media()).add("Transcript", transcript()).add("CreationTime", creationTime()) .add("CompletionTime", completionTime()).add("FailureReason", failureReason()).add("Settings", settings()) .build(); } public Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "TranscriptionJobName": return Optional.ofNullable(clazz.cast(transcriptionJobName())); case "TranscriptionJobStatus": return Optional.ofNullable(clazz.cast(transcriptionJobStatusAsString())); case "LanguageCode": return Optional.ofNullable(clazz.cast(languageCodeAsString())); case "MediaSampleRateHertz": return Optional.ofNullable(clazz.cast(mediaSampleRateHertz())); case "MediaFormat": return Optional.ofNullable(clazz.cast(mediaFormatAsString())); case "Media": return Optional.ofNullable(clazz.cast(media())); case "Transcript": return Optional.ofNullable(clazz.cast(transcript())); case "CreationTime": return Optional.ofNullable(clazz.cast(creationTime())); case "CompletionTime": return Optional.ofNullable(clazz.cast(completionTime())); case "FailureReason": return Optional.ofNullable(clazz.cast(failureReason())); case "Settings": return Optional.ofNullable(clazz.cast(settings())); default: return Optional.empty(); } } @Override public List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((TranscriptionJob) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The name of the transcription job. *

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

* The status of the transcription job. *

* * @param transcriptionJobStatus * The status of the transcription job. * @see TranscriptionJobStatus * @return Returns a reference to this object so that method calls can be chained together. * @see TranscriptionJobStatus */ Builder transcriptionJobStatus(String transcriptionJobStatus); /** *

* The status of the transcription job. *

* * @param transcriptionJobStatus * The status of the transcription job. * @see TranscriptionJobStatus * @return Returns a reference to this object so that method calls can be chained together. * @see TranscriptionJobStatus */ Builder transcriptionJobStatus(TranscriptionJobStatus transcriptionJobStatus); /** *

* The language code for the input speech. *

* * @param languageCode * The language code for the input speech. * @see LanguageCode * @return Returns a reference to this object so that method calls can be chained together. * @see LanguageCode */ Builder languageCode(String languageCode); /** *

* The language code for the input speech. *

* * @param languageCode * The language code for the input speech. * @see LanguageCode * @return Returns a reference to this object so that method calls can be chained together. * @see LanguageCode */ Builder languageCode(LanguageCode languageCode); /** *

* The sample rate, in Hertz, of the audio track in the input media file. *

* * @param mediaSampleRateHertz * The sample rate, in Hertz, of the audio track in the input media file. * @return Returns a reference to this object so that method calls can be chained together. */ Builder mediaSampleRateHertz(Integer mediaSampleRateHertz); /** *

* The format of the input media file. *

* * @param mediaFormat * The format of the input media file. * @see MediaFormat * @return Returns a reference to this object so that method calls can be chained together. * @see MediaFormat */ Builder mediaFormat(String mediaFormat); /** *

* The format of the input media file. *

* * @param mediaFormat * The format of the input media file. * @see MediaFormat * @return Returns a reference to this object so that method calls can be chained together. * @see MediaFormat */ Builder mediaFormat(MediaFormat mediaFormat); /** *

* An object that describes the input media for the transcription job. *

* * @param media * An object that describes the input media for the transcription job. * @return Returns a reference to this object so that method calls can be chained together. */ Builder media(Media media); /** *

* An object that describes the input media for the transcription job. *

* This is a convenience that creates an instance of the {@link Media.Builder} avoiding the need to create one * manually via {@link Media#builder()}. * * When the {@link Consumer} completes, {@link Media.Builder#build()} is called immediately and its result is * passed to {@link #media(Media)}. * * @param media * a consumer that will call methods on {@link Media.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #media(Media) */ default Builder media(Consumer media) { return media(Media.builder().applyMutation(media).build()); } /** *

* An object that describes the output of the transcription job. *

* * @param transcript * An object that describes the output of the transcription job. * @return Returns a reference to this object so that method calls can be chained together. */ Builder transcript(Transcript transcript); /** *

* An object that describes the output of the transcription job. *

* This is a convenience that creates an instance of the {@link Transcript.Builder} avoiding the need to create * one manually via {@link Transcript#builder()}. * * When the {@link Consumer} completes, {@link Transcript.Builder#build()} is called immediately and its result * is passed to {@link #transcript(Transcript)}. * * @param transcript * a consumer that will call methods on {@link Transcript.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #transcript(Transcript) */ default Builder transcript(Consumer transcript) { return transcript(Transcript.builder().applyMutation(transcript).build()); } /** *

* A timestamp that shows when the job was created. *

* * @param creationTime * A timestamp that shows when the job was created. * @return Returns a reference to this object so that method calls can be chained together. */ Builder creationTime(Instant creationTime); /** *

* A timestamp that shows when the job was completed. *

* * @param completionTime * A timestamp that shows when the job was completed. * @return Returns a reference to this object so that method calls can be chained together. */ Builder completionTime(Instant completionTime); /** *

* If the TranscriptionJobStatus field is FAILED, this field contains information * about why the job failed. *

* * @param failureReason * If the TranscriptionJobStatus field is FAILED, this field contains * information about why the job failed. * @return Returns a reference to this object so that method calls can be chained together. */ Builder failureReason(String failureReason); /** *

* Optional settings for the transcription job. Use these settings to turn on speaker recognition, to set the * maximum number of speakers that should be identified and to specify a custom vocabulary to use when * processing the transcription job. *

* * @param settings * Optional settings for the transcription job. Use these settings to turn on speaker recognition, to set * the maximum number of speakers that should be identified and to specify a custom vocabulary to use * when processing the transcription job. * @return Returns a reference to this object so that method calls can be chained together. */ Builder settings(Settings settings); /** *

* Optional settings for the transcription job. Use these settings to turn on speaker recognition, to set the * maximum number of speakers that should be identified and to specify a custom vocabulary to use when * processing the transcription job. *

* This is a convenience that creates an instance of the {@link Settings.Builder} avoiding the need to create * one manually via {@link Settings#builder()}. * * When the {@link Consumer} completes, {@link Settings.Builder#build()} is called immediately and its result is * passed to {@link #settings(Settings)}. * * @param settings * a consumer that will call methods on {@link Settings.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #settings(Settings) */ default Builder settings(Consumer settings) { return settings(Settings.builder().applyMutation(settings).build()); } } static final class BuilderImpl implements Builder { private String transcriptionJobName; private String transcriptionJobStatus; private String languageCode; private Integer mediaSampleRateHertz; private String mediaFormat; private Media media; private Transcript transcript; private Instant creationTime; private Instant completionTime; private String failureReason; private Settings settings; private BuilderImpl() { } private BuilderImpl(TranscriptionJob model) { transcriptionJobName(model.transcriptionJobName); transcriptionJobStatus(model.transcriptionJobStatus); languageCode(model.languageCode); mediaSampleRateHertz(model.mediaSampleRateHertz); mediaFormat(model.mediaFormat); media(model.media); transcript(model.transcript); creationTime(model.creationTime); completionTime(model.completionTime); failureReason(model.failureReason); settings(model.settings); } public final String getTranscriptionJobName() { return transcriptionJobName; } @Override public final Builder transcriptionJobName(String transcriptionJobName) { this.transcriptionJobName = transcriptionJobName; return this; } public final void setTranscriptionJobName(String transcriptionJobName) { this.transcriptionJobName = transcriptionJobName; } public final String getTranscriptionJobStatusAsString() { return transcriptionJobStatus; } @Override public final Builder transcriptionJobStatus(String transcriptionJobStatus) { this.transcriptionJobStatus = transcriptionJobStatus; return this; } @Override public final Builder transcriptionJobStatus(TranscriptionJobStatus transcriptionJobStatus) { this.transcriptionJobStatus(transcriptionJobStatus.toString()); return this; } public final void setTranscriptionJobStatus(String transcriptionJobStatus) { this.transcriptionJobStatus = transcriptionJobStatus; } public final String getLanguageCodeAsString() { return languageCode; } @Override public final Builder languageCode(String languageCode) { this.languageCode = languageCode; return this; } @Override public final Builder languageCode(LanguageCode languageCode) { this.languageCode(languageCode.toString()); return this; } public final void setLanguageCode(String languageCode) { this.languageCode = languageCode; } public final Integer getMediaSampleRateHertz() { return mediaSampleRateHertz; } @Override public final Builder mediaSampleRateHertz(Integer mediaSampleRateHertz) { this.mediaSampleRateHertz = mediaSampleRateHertz; return this; } public final void setMediaSampleRateHertz(Integer mediaSampleRateHertz) { this.mediaSampleRateHertz = mediaSampleRateHertz; } public final String getMediaFormatAsString() { return mediaFormat; } @Override public final Builder mediaFormat(String mediaFormat) { this.mediaFormat = mediaFormat; return this; } @Override public final Builder mediaFormat(MediaFormat mediaFormat) { this.mediaFormat(mediaFormat.toString()); return this; } public final void setMediaFormat(String mediaFormat) { this.mediaFormat = mediaFormat; } public final Media.Builder getMedia() { return media != null ? media.toBuilder() : null; } @Override public final Builder media(Media media) { this.media = media; return this; } public final void setMedia(Media.BuilderImpl media) { this.media = media != null ? media.build() : null; } public final Transcript.Builder getTranscript() { return transcript != null ? transcript.toBuilder() : null; } @Override public final Builder transcript(Transcript transcript) { this.transcript = transcript; return this; } public final void setTranscript(Transcript.BuilderImpl transcript) { this.transcript = transcript != null ? transcript.build() : null; } public final Instant getCreationTime() { return creationTime; } @Override public final Builder creationTime(Instant creationTime) { this.creationTime = creationTime; return this; } public final void setCreationTime(Instant creationTime) { this.creationTime = creationTime; } public final Instant getCompletionTime() { return completionTime; } @Override public final Builder completionTime(Instant completionTime) { this.completionTime = completionTime; return this; } public final void setCompletionTime(Instant completionTime) { this.completionTime = completionTime; } public final String getFailureReason() { return failureReason; } @Override public final Builder failureReason(String failureReason) { this.failureReason = failureReason; return this; } public final void setFailureReason(String failureReason) { this.failureReason = failureReason; } public final Settings.Builder getSettings() { return settings != null ? settings.toBuilder() : null; } @Override public final Builder settings(Settings settings) { this.settings = settings; return this; } public final void setSettings(Settings.BuilderImpl settings) { this.settings = settings != null ? settings.build() : null; } @Override public TranscriptionJob build() { return new TranscriptionJob(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy