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

com.spotify.github.v3.activity.events.ImmutableDeploymentEvent Maven / Gradle / Ivy

package com.spotify.github.v3.activity.events;

import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import com.google.errorprone.annotations.Var;
import com.spotify.github.v3.User;
import com.spotify.github.v3.repos.Deployment;
import com.spotify.github.v3.repos.Repository;
import java.util.Objects;
import javax.annotation.CheckReturnValue;
import javax.annotation.Nullable;
import javax.annotation.ParametersAreNonnullByDefault;
import javax.annotation.concurrent.Immutable;
import javax.annotation.concurrent.NotThreadSafe;
import org.immutables.value.Generated;

/**
 * Immutable implementation of {@link DeploymentEvent}.
 * 

* Use the builder to create immutable instances: * {@code ImmutableDeploymentEvent.builder()}. */ @Generated(from = "DeploymentEvent", generator = "Immutables") @SuppressWarnings({"all"}) @ParametersAreNonnullByDefault @javax.annotation.processing.Generated("org.immutables.processor.ProxyProcessor") @Immutable @CheckReturnValue public final class ImmutableDeploymentEvent implements DeploymentEvent { private final @Nullable Repository repository; private final @Nullable User sender; private final @Nullable EventInstallation eventInstallation; private final @Nullable Deployment deployment; private ImmutableDeploymentEvent( @Nullable Repository repository, @Nullable User sender, @Nullable EventInstallation eventInstallation, @Nullable Deployment deployment) { this.repository = repository; this.sender = sender; this.eventInstallation = eventInstallation; this.deployment = deployment; } /** *The {@link Repository} */ @JsonProperty @Override public @Nullable Repository repository() { return repository; } /** *The {@link User} that triggered/sent the event. */ @JsonProperty @Override public @Nullable User sender() { return sender; } /** *The {@link EventInstallation}, if the event comes from a Github App. */ @JsonProperty("installation") @Override public @Nullable EventInstallation eventInstallation() { return eventInstallation; } /** *Deployment */ @JsonProperty @Override public @Nullable Deployment deployment() { return deployment; } /** * Copy the current immutable object by setting a value for the {@link DeploymentEvent#repository() repository} attribute. * A shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param value A new value for repository (can be {@code null}) * @return A modified copy of the {@code this} object */ public final ImmutableDeploymentEvent withRepository(@Nullable Repository value) { if (this.repository == value) return this; return new ImmutableDeploymentEvent(value, this.sender, this.eventInstallation, this.deployment); } /** * Copy the current immutable object by setting a value for the {@link DeploymentEvent#sender() sender} attribute. * A shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param value A new value for sender (can be {@code null}) * @return A modified copy of the {@code this} object */ public final ImmutableDeploymentEvent withSender(@Nullable User value) { if (this.sender == value) return this; return new ImmutableDeploymentEvent(this.repository, value, this.eventInstallation, this.deployment); } /** * Copy the current immutable object by setting a value for the {@link DeploymentEvent#eventInstallation() eventInstallation} attribute. * A shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param value A new value for eventInstallation (can be {@code null}) * @return A modified copy of the {@code this} object */ public final ImmutableDeploymentEvent withEventInstallation(@Nullable EventInstallation value) { if (this.eventInstallation == value) return this; return new ImmutableDeploymentEvent(this.repository, this.sender, value, this.deployment); } /** * Copy the current immutable object by setting a value for the {@link DeploymentEvent#deployment() deployment} attribute. * A shallow reference equality check is used to prevent copying of the same value by returning {@code this}. * @param value A new value for deployment (can be {@code null}) * @return A modified copy of the {@code this} object */ public final ImmutableDeploymentEvent withDeployment(@Nullable Deployment value) { if (this.deployment == value) return this; return new ImmutableDeploymentEvent(this.repository, this.sender, this.eventInstallation, value); } /** * This instance is equal to all instances of {@code ImmutableDeploymentEvent} that have equal attribute values. * @return {@code true} if {@code this} is equal to {@code another} instance */ @Override public boolean equals(@Nullable Object another) { if (this == another) return true; return another instanceof ImmutableDeploymentEvent && equalTo((ImmutableDeploymentEvent) another); } private boolean equalTo(ImmutableDeploymentEvent another) { return Objects.equals(repository, another.repository) && Objects.equals(sender, another.sender) && Objects.equals(eventInstallation, another.eventInstallation) && Objects.equals(deployment, another.deployment); } /** * Computes a hash code from attributes: {@code repository}, {@code sender}, {@code eventInstallation}, {@code deployment}. * @return hashCode value */ @Override public int hashCode() { @Var int h = 5381; h += (h << 5) + Objects.hashCode(repository); h += (h << 5) + Objects.hashCode(sender); h += (h << 5) + Objects.hashCode(eventInstallation); h += (h << 5) + Objects.hashCode(deployment); return h; } /** * Prints the immutable value {@code DeploymentEvent} with attribute values. * @return A string representation of the value */ @Override public String toString() { return "DeploymentEvent{" + "repository=" + repository + ", sender=" + sender + ", eventInstallation=" + eventInstallation + ", deployment=" + deployment + "}"; } /** * Utility type used to correctly read immutable object from JSON representation. * @deprecated Do not use this type directly, it exists only for the Jackson-binding infrastructure */ @Generated(from = "DeploymentEvent", generator = "Immutables") @Deprecated @SuppressWarnings("Immutable") @JsonDeserialize @JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE) static final class Json implements DeploymentEvent { @Nullable Repository repository; @Nullable User sender; @Nullable EventInstallation eventInstallation; @Nullable Deployment deployment; @JsonProperty public void setRepository(@Nullable Repository repository) { this.repository = repository; } @JsonProperty public void setSender(@Nullable User sender) { this.sender = sender; } @JsonProperty("installation") public void setEventInstallation(@Nullable EventInstallation eventInstallation) { this.eventInstallation = eventInstallation; } @JsonProperty public void setDeployment(@Nullable Deployment deployment) { this.deployment = deployment; } @Override public Repository repository() { throw new UnsupportedOperationException(); } @Override public User sender() { throw new UnsupportedOperationException(); } @Override public EventInstallation eventInstallation() { throw new UnsupportedOperationException(); } @Override public Deployment deployment() { throw new UnsupportedOperationException(); } } /** * @param json A JSON-bindable data structure * @return An immutable value type * @deprecated Do not use this method directly, it exists only for the Jackson-binding infrastructure */ @Deprecated @JsonCreator(mode = JsonCreator.Mode.DELEGATING) static ImmutableDeploymentEvent fromJson(Json json) { ImmutableDeploymentEvent.Builder builder = ImmutableDeploymentEvent.builder(); if (json.repository != null) { builder.repository(json.repository); } if (json.sender != null) { builder.sender(json.sender); } if (json.eventInstallation != null) { builder.eventInstallation(json.eventInstallation); } if (json.deployment != null) { builder.deployment(json.deployment); } return builder.build(); } /** * Creates an immutable copy of a {@link DeploymentEvent} value. * Uses accessors to get values to initialize the new immutable instance. * If an instance is already immutable, it is returned as is. * @param instance The instance to copy * @return A copied immutable DeploymentEvent instance */ public static ImmutableDeploymentEvent copyOf(DeploymentEvent instance) { if (instance instanceof ImmutableDeploymentEvent) { return (ImmutableDeploymentEvent) instance; } return ImmutableDeploymentEvent.builder() .from(instance) .build(); } /** * Creates a builder for {@link ImmutableDeploymentEvent ImmutableDeploymentEvent}. *

   * ImmutableDeploymentEvent.builder()
   *    .repository(com.spotify.github.v3.repos.Repository | null) // nullable {@link DeploymentEvent#repository() repository}
   *    .sender(com.spotify.github.v3.User | null) // nullable {@link DeploymentEvent#sender() sender}
   *    .eventInstallation(com.spotify.github.v3.activity.events.EventInstallation | null) // nullable {@link DeploymentEvent#eventInstallation() eventInstallation}
   *    .deployment(com.spotify.github.v3.repos.Deployment | null) // nullable {@link DeploymentEvent#deployment() deployment}
   *    .build();
   * 
* @return A new ImmutableDeploymentEvent builder */ public static ImmutableDeploymentEvent.Builder builder() { return new ImmutableDeploymentEvent.Builder(); } /** * Builds instances of type {@link ImmutableDeploymentEvent ImmutableDeploymentEvent}. * Initialize attributes and then invoke the {@link #build()} method to create an * immutable instance. *

{@code Builder} is not thread-safe and generally should not be stored in a field or collection, * but instead used immediately to create instances. */ @Generated(from = "DeploymentEvent", generator = "Immutables") @NotThreadSafe public static final class Builder { private @Nullable Repository repository; private @Nullable User sender; private @Nullable EventInstallation eventInstallation; private @Nullable Deployment deployment; private Builder() { } /** * Fill a builder with attribute values from the provided {@code com.spotify.github.v3.activity.events.DeploymentEvent} instance. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue public final Builder from(DeploymentEvent instance) { Objects.requireNonNull(instance, "instance"); from((Object) instance); return this; } /** * Fill a builder with attribute values from the provided {@code com.spotify.github.v3.activity.events.BaseEvent} instance. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue public final Builder from(BaseEvent instance) { Objects.requireNonNull(instance, "instance"); from((Object) instance); return this; } private void from(Object object) { if (object instanceof DeploymentEvent) { DeploymentEvent instance = (DeploymentEvent) object; @Nullable Deployment deploymentValue = instance.deployment(); if (deploymentValue != null) { deployment(deploymentValue); } } if (object instanceof BaseEvent) { BaseEvent instance = (BaseEvent) object; @Nullable Repository repositoryValue = instance.repository(); if (repositoryValue != null) { repository(repositoryValue); } @Nullable User senderValue = instance.sender(); if (senderValue != null) { sender(senderValue); } @Nullable EventInstallation eventInstallationValue = instance.eventInstallation(); if (eventInstallationValue != null) { eventInstallation(eventInstallationValue); } } } /** * Initializes the value for the {@link DeploymentEvent#repository() repository} attribute. * @param repository The value for repository (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue @JsonProperty public final Builder repository(@Nullable Repository repository) { this.repository = repository; return this; } /** * Initializes the value for the {@link DeploymentEvent#sender() sender} attribute. * @param sender The value for sender (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue @JsonProperty public final Builder sender(@Nullable User sender) { this.sender = sender; return this; } /** * Initializes the value for the {@link DeploymentEvent#eventInstallation() eventInstallation} attribute. * @param eventInstallation The value for eventInstallation (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue @JsonProperty("installation") public final Builder eventInstallation(@Nullable EventInstallation eventInstallation) { this.eventInstallation = eventInstallation; return this; } /** * Initializes the value for the {@link DeploymentEvent#deployment() deployment} attribute. * @param deployment The value for deployment (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ @CanIgnoreReturnValue @JsonProperty public final Builder deployment(@Nullable Deployment deployment) { this.deployment = deployment; return this; } /** * Builds a new {@link ImmutableDeploymentEvent ImmutableDeploymentEvent}. * @return An immutable instance of DeploymentEvent * @throws java.lang.IllegalStateException if any required attributes are missing */ public ImmutableDeploymentEvent build() { return new ImmutableDeploymentEvent(repository, sender, eventInstallation, deployment); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy