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

com.google.firebase.remoteconfig.PublishOptions Maven / Gradle / Ivy

Go to download

This is the official Firebase Admin Java SDK. Build extraordinary native JVM apps in minutes with Firebase. The Firebase platform can power your app’s backend, user authentication, static hosting, and more.

There is a newer version: 9.2.0
Show newest version
package com.google.firebase.remoteconfig;

/**
 * An internal class for publish template options.
 */
final class PublishOptions {

  private boolean validateOnly;
  private boolean forcePublish;

  PublishOptions() {
    validateOnly = false;
    forcePublish = false;
  }

  public PublishOptions setForcePublish(boolean forcePublish) {
    this.forcePublish = forcePublish;
    return this;
  }

  public PublishOptions setValidateOnly(boolean validateOnly) {
    this.validateOnly = validateOnly;
    return this;
  }

  public boolean isForcePublish() {
    return forcePublish;
  }

  public boolean isValidateOnly() {
    return validateOnly;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy