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

org.cloudfoundry.client.v3.buildpacks.CreateBuildpackResponse Maven / Gradle / Ivy

There is a newer version: 5.12.2.RELEASE
Show newest version
package org.cloudfoundry.client.v3.buildpacks;

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 java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import org.cloudfoundry.Nullable;
import org.cloudfoundry.client.v3.*;
import org.cloudfoundry.client.v3.Metadata;
import org.cloudfoundry.client.v3.Resource;
import org.immutables.value.Generated;

/**
 * The response payload for the Create Buildpack operation
 */
@Generated(from = "_CreateBuildpackResponse", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.Generated("org.immutables.processor.ProxyProcessor")
public final class CreateBuildpackResponse
    extends org.cloudfoundry.client.v3.buildpacks._CreateBuildpackResponse {
  private final String createdAt;
  private final String id;
  private final Map links;
  private final @Nullable String updatedAt;
  private final Boolean enabled;
  private final @Nullable String filename;
  private final Boolean locked;
  private final @Nullable Metadata metadata;
  private final String name;
  private final Integer position;
  private final @Nullable String stack;
  private final BuildpackState state;

  private CreateBuildpackResponse(CreateBuildpackResponse.Builder builder) {
    this.createdAt = builder.createdAt;
    this.id = builder.id;
    this.links = createUnmodifiableMap(false, false, builder.links);
    this.updatedAt = builder.updatedAt;
    this.enabled = builder.enabled;
    this.filename = builder.filename;
    this.locked = builder.locked;
    this.metadata = builder.metadata;
    this.name = builder.name;
    this.position = builder.position;
    this.stack = builder.stack;
    this.state = builder.state;
  }

  /**
   * When the resource was created
   */
  @JsonProperty("created_at")
  @Override
  public String getCreatedAt() {
    return createdAt;
  }

  /**
   * The resource's id
   */
  @JsonProperty("guid")
  @Override
  public String getId() {
    return id;
  }

  /**
   * Links to related resources and actions for the resource
   */
  @JsonProperty("links")
  @Override
  public Map getLinks() {
    return links;
  }

  /**
   * When the resource was last updated
   */
  @JsonProperty("updated_at")
  @Override
  public @Nullable String getUpdatedAt() {
    return updatedAt;
  }

  /**
   * Whether the buildpack is enabled
   */
  @JsonProperty("enabled")
  @Override
  public Boolean getEnabled() {
    return enabled;
  }

  /**
   * The filename
   */
  @JsonProperty("filename")
  @Override
  public @Nullable String getFilename() {
    return filename;
  }

  /**
   * Whether the buildpack is locked
   */
  @JsonProperty("locked")
  @Override
  public Boolean getLocked() {
    return locked;
  }

  /**
   * The metadata
   */
  @JsonProperty("metadata")
  @Override
  public @Nullable Metadata getMetadata() {
    return metadata;
  }

  /**
   * The name
   */
  @JsonProperty("name")
  @Override
  public String getName() {
    return name;
  }

  /**
   * The position
   */
  @JsonProperty("position")
  @Override
  public Integer getPosition() {
    return position;
  }

  /**
   * The stack
   */
  @JsonProperty("stack")
  @Override
  public @Nullable String getStack() {
    return stack;
  }

  /**
   * The state
   */
  @JsonProperty("state")
  @Override
  public BuildpackState getState() {
    return state;
  }

  /**
   * This instance is equal to all instances of {@code CreateBuildpackResponse} that have equal attribute values.
   * @return {@code true} if {@code this} is equal to {@code another} instance
   */
  @Override
  public boolean equals(Object another) {
    if (this == another) return true;
    return another instanceof CreateBuildpackResponse
        && equalTo(0, (CreateBuildpackResponse) another);
  }

  private boolean equalTo(int synthetic, CreateBuildpackResponse another) {
    return createdAt.equals(another.createdAt)
        && id.equals(another.id)
        && links.equals(another.links)
        && Objects.equals(updatedAt, another.updatedAt)
        && enabled.equals(another.enabled)
        && Objects.equals(filename, another.filename)
        && locked.equals(another.locked)
        && Objects.equals(metadata, another.metadata)
        && name.equals(another.name)
        && position.equals(another.position)
        && Objects.equals(stack, another.stack)
        && state.equals(another.state);
  }

  /**
   * Computes a hash code from attributes: {@code createdAt}, {@code id}, {@code links}, {@code updatedAt}, {@code enabled}, {@code filename}, {@code locked}, {@code metadata}, {@code name}, {@code position}, {@code stack}, {@code state}.
   * @return hashCode value
   */
  @Override
  public int hashCode() {
    int h = 5381;
    h += (h << 5) + createdAt.hashCode();
    h += (h << 5) + id.hashCode();
    h += (h << 5) + links.hashCode();
    h += (h << 5) + Objects.hashCode(updatedAt);
    h += (h << 5) + enabled.hashCode();
    h += (h << 5) + Objects.hashCode(filename);
    h += (h << 5) + locked.hashCode();
    h += (h << 5) + Objects.hashCode(metadata);
    h += (h << 5) + name.hashCode();
    h += (h << 5) + position.hashCode();
    h += (h << 5) + Objects.hashCode(stack);
    h += (h << 5) + state.hashCode();
    return h;
  }

  /**
   * Prints the immutable value {@code CreateBuildpackResponse} with attribute values.
   * @return A string representation of the value
   */
  @Override
  public String toString() {
    return "CreateBuildpackResponse{"
        + "createdAt=" + createdAt
        + ", id=" + id
        + ", links=" + links
        + ", updatedAt=" + updatedAt
        + ", enabled=" + enabled
        + ", filename=" + filename
        + ", locked=" + locked
        + ", metadata=" + metadata
        + ", name=" + name
        + ", position=" + position
        + ", stack=" + stack
        + ", state=" + state
        + "}";
  }

  /**
   * 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 = "_CreateBuildpackResponse", generator = "Immutables")
  @Deprecated
  @JsonDeserialize
  @JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE)
  static final class Json extends org.cloudfoundry.client.v3.buildpacks._CreateBuildpackResponse {
    String createdAt;
    String id;
    Map links = Collections.emptyMap();
    String updatedAt;
    Boolean enabled;
    String filename;
    Boolean locked;
    Metadata metadata;
    String name;
    Integer position;
    String stack;
    BuildpackState state;
    @JsonProperty("created_at")
    public void setCreatedAt(String createdAt) {
      this.createdAt = createdAt;
    }
    @JsonProperty("guid")
    public void setId(String id) {
      this.id = id;
    }
    @JsonProperty("links")
    public void setLinks(Map links) {
      this.links = links;
    }
    @JsonProperty("updated_at")
    public void setUpdatedAt(@Nullable String updatedAt) {
      this.updatedAt = updatedAt;
    }
    @JsonProperty("enabled")
    public void setEnabled(Boolean enabled) {
      this.enabled = enabled;
    }
    @JsonProperty("filename")
    public void setFilename(@Nullable String filename) {
      this.filename = filename;
    }
    @JsonProperty("locked")
    public void setLocked(Boolean locked) {
      this.locked = locked;
    }
    @JsonProperty("metadata")
    public void setMetadata(@Nullable Metadata metadata) {
      this.metadata = metadata;
    }
    @JsonProperty("name")
    public void setName(String name) {
      this.name = name;
    }
    @JsonProperty("position")
    public void setPosition(Integer position) {
      this.position = position;
    }
    @JsonProperty("stack")
    public void setStack(@Nullable String stack) {
      this.stack = stack;
    }
    @JsonProperty("state")
    public void setState(BuildpackState state) {
      this.state = state;
    }
    @Override
    public String getCreatedAt() { throw new UnsupportedOperationException(); }
    @Override
    public String getId() { throw new UnsupportedOperationException(); }
    @Override
    public Map getLinks() { throw new UnsupportedOperationException(); }
    @Override
    public String getUpdatedAt() { throw new UnsupportedOperationException(); }
    @Override
    public Boolean getEnabled() { throw new UnsupportedOperationException(); }
    @Override
    public String getFilename() { throw new UnsupportedOperationException(); }
    @Override
    public Boolean getLocked() { throw new UnsupportedOperationException(); }
    @Override
    public Metadata getMetadata() { throw new UnsupportedOperationException(); }
    @Override
    public String getName() { throw new UnsupportedOperationException(); }
    @Override
    public Integer getPosition() { throw new UnsupportedOperationException(); }
    @Override
    public String getStack() { throw new UnsupportedOperationException(); }
    @Override
    public BuildpackState getState() { 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 CreateBuildpackResponse fromJson(Json json) {
    CreateBuildpackResponse.Builder builder = CreateBuildpackResponse.builder();
    if (json.createdAt != null) {
      builder.createdAt(json.createdAt);
    }
    if (json.id != null) {
      builder.id(json.id);
    }
    if (json.links != null) {
      builder.putAllLinks(json.links);
    }
    if (json.updatedAt != null) {
      builder.updatedAt(json.updatedAt);
    }
    if (json.enabled != null) {
      builder.enabled(json.enabled);
    }
    if (json.filename != null) {
      builder.filename(json.filename);
    }
    if (json.locked != null) {
      builder.locked(json.locked);
    }
    if (json.metadata != null) {
      builder.metadata(json.metadata);
    }
    if (json.name != null) {
      builder.name(json.name);
    }
    if (json.position != null) {
      builder.position(json.position);
    }
    if (json.stack != null) {
      builder.stack(json.stack);
    }
    if (json.state != null) {
      builder.state(json.state);
    }
    return builder.build();
  }

  /**
   * Creates a builder for {@link CreateBuildpackResponse CreateBuildpackResponse}.
   * 
   * CreateBuildpackResponse.builder()
   *    .createdAt(String) // required {@link CreateBuildpackResponse#getCreatedAt() createdAt}
   *    .id(String) // required {@link CreateBuildpackResponse#getId() id}
   *    .link|putAllLinks(String => Link) // {@link CreateBuildpackResponse#getLinks() links} mappings
   *    .updatedAt(String | null) // nullable {@link CreateBuildpackResponse#getUpdatedAt() updatedAt}
   *    .enabled(Boolean) // required {@link CreateBuildpackResponse#getEnabled() enabled}
   *    .filename(String | null) // nullable {@link CreateBuildpackResponse#getFilename() filename}
   *    .locked(Boolean) // required {@link CreateBuildpackResponse#getLocked() locked}
   *    .metadata(org.cloudfoundry.client.v3.Metadata | null) // nullable {@link CreateBuildpackResponse#getMetadata() metadata}
   *    .name(String) // required {@link CreateBuildpackResponse#getName() name}
   *    .position(Integer) // required {@link CreateBuildpackResponse#getPosition() position}
   *    .stack(String | null) // nullable {@link CreateBuildpackResponse#getStack() stack}
   *    .state(org.cloudfoundry.client.v3.buildpacks.BuildpackState) // required {@link CreateBuildpackResponse#getState() state}
   *    .build();
   * 
* @return A new CreateBuildpackResponse builder */ public static CreateBuildpackResponse.Builder builder() { return new CreateBuildpackResponse.Builder(); } /** * Builds instances of type {@link CreateBuildpackResponse CreateBuildpackResponse}. * 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 = "_CreateBuildpackResponse", generator = "Immutables") public static final class Builder { private static final long INIT_BIT_CREATED_AT = 0x1L; private static final long INIT_BIT_ID = 0x2L; private static final long INIT_BIT_ENABLED = 0x4L; private static final long INIT_BIT_LOCKED = 0x8L; private static final long INIT_BIT_NAME = 0x10L; private static final long INIT_BIT_POSITION = 0x20L; private static final long INIT_BIT_STATE = 0x40L; private long initBits = 0x7fL; private String createdAt; private String id; private Map links = new LinkedHashMap(); private String updatedAt; private Boolean enabled; private String filename; private Boolean locked; private Metadata metadata; private String name; private Integer position; private String stack; private BuildpackState state; private Builder() { } /** * Fill a builder with attribute values from the provided {@code org.cloudfoundry.client.v3.Resource} instance. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(Resource instance) { Objects.requireNonNull(instance, "instance"); from((short) 0, (Object) instance); return this; } /** * Fill a builder with attribute values from the provided {@code CreateBuildpackResponse} instance. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(CreateBuildpackResponse instance) { Objects.requireNonNull(instance, "instance"); from((short) 0, (Object) instance); return this; } /** * Copy abstract value type {@code _CreateBuildpackResponse} instance into builder. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(_CreateBuildpackResponse instance) { Objects.requireNonNull(instance, "instance"); from((short) 0, (Object) instance); return this; } /** * Fill a builder with attribute values from the provided {@code org.cloudfoundry.client.v3.buildpacks.Buildpack} instance. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(Buildpack instance) { Objects.requireNonNull(instance, "instance"); from((short) 0, (Object) instance); return this; } private void from(short _unused, Object object) { long bits = 0; if (object instanceof Resource) { Resource instance = (Resource) object; if ((bits & 0x8L) == 0) { createdAt(instance.getCreatedAt()); bits |= 0x8L; } if ((bits & 0x40L) == 0) { putAllLinks(instance.getLinks()); bits |= 0x40L; } if ((bits & 0x80L) == 0) { id(instance.getId()); bits |= 0x80L; } if ((bits & 0x800L) == 0) { String updatedAtValue = instance.getUpdatedAt(); if (updatedAtValue != null) { updatedAt(updatedAtValue); } bits |= 0x800L; } } if (object instanceof org.cloudfoundry.client.v3.buildpacks._CreateBuildpackResponse) { org.cloudfoundry.client.v3.buildpacks._CreateBuildpackResponse instance = (org.cloudfoundry.client.v3.buildpacks._CreateBuildpackResponse) object; if ((bits & 0x1L) == 0) { Metadata metadataValue = instance.getMetadata(); if (metadataValue != null) { metadata(metadataValue); } bits |= 0x1L; } if ((bits & 0x2L) == 0) { String stackValue = instance.getStack(); if (stackValue != null) { stack(stackValue); } bits |= 0x2L; } if ((bits & 0x10L) == 0) { String filenameValue = instance.getFilename(); if (filenameValue != null) { filename(filenameValue); } bits |= 0x10L; } if ((bits & 0x20L) == 0) { name(instance.getName()); bits |= 0x20L; } if ((bits & 0x100L) == 0) { position(instance.getPosition()); bits |= 0x100L; } if ((bits & 0x200L) == 0) { state(instance.getState()); bits |= 0x200L; } if ((bits & 0x400L) == 0) { locked(instance.getLocked()); bits |= 0x400L; } if ((bits & 0x4L) == 0) { enabled(instance.getEnabled()); bits |= 0x4L; } } if (object instanceof Buildpack) { Buildpack instance = (Buildpack) object; if ((bits & 0x8L) == 0) { createdAt(instance.getCreatedAt()); bits |= 0x8L; } if ((bits & 0x1L) == 0) { Metadata metadataValue = instance.getMetadata(); if (metadataValue != null) { metadata(metadataValue); } bits |= 0x1L; } if ((bits & 0x2L) == 0) { String stackValue = instance.getStack(); if (stackValue != null) { stack(stackValue); } bits |= 0x2L; } if ((bits & 0x10L) == 0) { String filenameValue = instance.getFilename(); if (filenameValue != null) { filename(filenameValue); } bits |= 0x10L; } if ((bits & 0x20L) == 0) { name(instance.getName()); bits |= 0x20L; } if ((bits & 0x40L) == 0) { putAllLinks(instance.getLinks()); bits |= 0x40L; } if ((bits & 0x80L) == 0) { id(instance.getId()); bits |= 0x80L; } if ((bits & 0x100L) == 0) { position(instance.getPosition()); bits |= 0x100L; } if ((bits & 0x200L) == 0) { state(instance.getState()); bits |= 0x200L; } if ((bits & 0x400L) == 0) { locked(instance.getLocked()); bits |= 0x400L; } if ((bits & 0x4L) == 0) { enabled(instance.getEnabled()); bits |= 0x4L; } if ((bits & 0x800L) == 0) { String updatedAtValue = instance.getUpdatedAt(); if (updatedAtValue != null) { updatedAt(updatedAtValue); } bits |= 0x800L; } } } /** * Initializes the value for the {@link CreateBuildpackResponse#getCreatedAt() createdAt} attribute. * @param createdAt The value for createdAt * @return {@code this} builder for use in a chained invocation */ @JsonProperty("created_at") public final Builder createdAt(String createdAt) { this.createdAt = Objects.requireNonNull(createdAt, "createdAt"); initBits &= ~INIT_BIT_CREATED_AT; return this; } /** * Initializes the value for the {@link CreateBuildpackResponse#getId() id} attribute. * @param id The value for id * @return {@code this} builder for use in a chained invocation */ @JsonProperty("guid") public final Builder id(String id) { this.id = Objects.requireNonNull(id, "id"); initBits &= ~INIT_BIT_ID; return this; } /** * Put one entry to the {@link CreateBuildpackResponse#getLinks() links} map. * @param key The key in the links map * @param value The associated value in the links map * @return {@code this} builder for use in a chained invocation */ public final Builder link(String key, Link value) { this.links.put(key, value); return this; } /** * Put one entry to the {@link CreateBuildpackResponse#getLinks() links} map. Nulls are not permitted * @param entry The key and value entry * @return {@code this} builder for use in a chained invocation */ public final Builder link(Map.Entry entry) { String k = entry.getKey(); Link v = entry.getValue(); this.links.put(k, v); return this; } /** * Sets or replaces all mappings from the specified map as entries for the {@link CreateBuildpackResponse#getLinks() links} map. Nulls are not permitted * @param entries The entries that will be added to the links map * @return {@code this} builder for use in a chained invocation */ @JsonProperty("links") public final Builder links(Map entries) { this.links.clear(); return putAllLinks(entries); } /** * Put all mappings from the specified map as entries to {@link CreateBuildpackResponse#getLinks() links} map. Nulls are not permitted * @param entries The entries that will be added to the links map * @return {@code this} builder for use in a chained invocation */ public final Builder putAllLinks(Map entries) { for (Map.Entry e : entries.entrySet()) { String k = e.getKey(); Link v = e.getValue(); this.links.put(k, v); } return this; } /** * Initializes the value for the {@link CreateBuildpackResponse#getUpdatedAt() updatedAt} attribute. * @param updatedAt The value for updatedAt (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ @JsonProperty("updated_at") public final Builder updatedAt(@Nullable String updatedAt) { this.updatedAt = updatedAt; return this; } /** * Initializes the value for the {@link CreateBuildpackResponse#getEnabled() enabled} attribute. * @param enabled The value for enabled * @return {@code this} builder for use in a chained invocation */ @JsonProperty("enabled") public final Builder enabled(Boolean enabled) { this.enabled = Objects.requireNonNull(enabled, "enabled"); initBits &= ~INIT_BIT_ENABLED; return this; } /** * Initializes the value for the {@link CreateBuildpackResponse#getFilename() filename} attribute. * @param filename The value for filename (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ @JsonProperty("filename") public final Builder filename(@Nullable String filename) { this.filename = filename; return this; } /** * Initializes the value for the {@link CreateBuildpackResponse#getLocked() locked} attribute. * @param locked The value for locked * @return {@code this} builder for use in a chained invocation */ @JsonProperty("locked") public final Builder locked(Boolean locked) { this.locked = Objects.requireNonNull(locked, "locked"); initBits &= ~INIT_BIT_LOCKED; return this; } /** * Initializes the value for the {@link CreateBuildpackResponse#getMetadata() metadata} attribute. * @param metadata The value for metadata (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ @JsonProperty("metadata") public final Builder metadata(@Nullable Metadata metadata) { this.metadata = metadata; return this; } /** * Initializes the value for the {@link CreateBuildpackResponse#getName() name} attribute. * @param name The value for name * @return {@code this} builder for use in a chained invocation */ @JsonProperty("name") public final Builder name(String name) { this.name = Objects.requireNonNull(name, "name"); initBits &= ~INIT_BIT_NAME; return this; } /** * Initializes the value for the {@link CreateBuildpackResponse#getPosition() position} attribute. * @param position The value for position * @return {@code this} builder for use in a chained invocation */ @JsonProperty("position") public final Builder position(Integer position) { this.position = Objects.requireNonNull(position, "position"); initBits &= ~INIT_BIT_POSITION; return this; } /** * Initializes the value for the {@link CreateBuildpackResponse#getStack() stack} attribute. * @param stack The value for stack (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ @JsonProperty("stack") public final Builder stack(@Nullable String stack) { this.stack = stack; return this; } /** * Initializes the value for the {@link CreateBuildpackResponse#getState() state} attribute. * @param state The value for state * @return {@code this} builder for use in a chained invocation */ @JsonProperty("state") public final Builder state(BuildpackState state) { this.state = Objects.requireNonNull(state, "state"); initBits &= ~INIT_BIT_STATE; return this; } /** * Builds a new {@link CreateBuildpackResponse CreateBuildpackResponse}. * @return An immutable instance of CreateBuildpackResponse * @throws java.lang.IllegalStateException if any required attributes are missing */ public CreateBuildpackResponse build() { if (initBits != 0) { throw new IllegalStateException(formatRequiredAttributesMessage()); } return new CreateBuildpackResponse(this); } private String formatRequiredAttributesMessage() { List attributes = new ArrayList<>(); if ((initBits & INIT_BIT_CREATED_AT) != 0) attributes.add("createdAt"); if ((initBits & INIT_BIT_ID) != 0) attributes.add("id"); if ((initBits & INIT_BIT_ENABLED) != 0) attributes.add("enabled"); if ((initBits & INIT_BIT_LOCKED) != 0) attributes.add("locked"); if ((initBits & INIT_BIT_NAME) != 0) attributes.add("name"); if ((initBits & INIT_BIT_POSITION) != 0) attributes.add("position"); if ((initBits & INIT_BIT_STATE) != 0) attributes.add("state"); return "Cannot build CreateBuildpackResponse, some of required attributes are not set " + attributes; } } private static Map createUnmodifiableMap(boolean checkNulls, boolean skipNulls, Map map) { switch (map.size()) { case 0: return Collections.emptyMap(); case 1: { Map.Entry e = map.entrySet().iterator().next(); K k = e.getKey(); V v = e.getValue(); if (checkNulls) { Objects.requireNonNull(k, "key"); Objects.requireNonNull(v, v == null ? "value for key: " + k : null); } if (skipNulls && (k == null || v == null)) { return Collections.emptyMap(); } return Collections.singletonMap(k, v); } default: { Map linkedMap = new LinkedHashMap<>(map.size() * 4 / 3 + 1); if (skipNulls || checkNulls) { for (Map.Entry e : map.entrySet()) { K k = e.getKey(); V v = e.getValue(); if (skipNulls) { if (k == null || v == null) continue; } else if (checkNulls) { Objects.requireNonNull(k, "key"); Objects.requireNonNull(v, v == null ? "value for key: " + k : null); } linkedMap.put(k, v); } } else { linkedMap.putAll(map); } return Collections.unmodifiableMap(linkedMap); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy