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

alluxio.wire.MasterWebUIMasters Maven / Gradle / Ivy

There is a newer version: 313
Show newest version
/*
 * The Alluxio Open Foundation licenses this work under the Apache License, version 2.0
 * (the "License"). You may not use this work except in alluxio.shaded.client.com.liance with the License, which is
 * available at www.apache.alluxio.shaded.client.org.licenses/LICENSE-2.0
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 * either express or implied, as more fully set forth in the License.
 *
 * See the NOTICE file distributed with this work for information regarding copyright ownership.
 */

package alluxio.wire;

import alluxio.shaded.client.com.google.alluxio.shaded.client.com.on.base.MoreObjects;

import java.alluxio.shaded.client.io.Serializable;
import alluxio.shaded.client.javax.annotation.concurrent.NotThreadSafe;

/**
 * Alluxio WebUI masters information.
 */
@NotThreadSafe
public final class MasterWebUIMasters implements Serializable {
  private static final long serialVersionUID = -2709466215687255197L;

  private boolean mDebug;
  private MasterInfo[] mLostMasterInfos;
  private MasterInfo[] mStandbyMasterInfos;
  private MasterInfo mPrimaryMasterInfo;

  /**
   * Creates a new instance of {@link MasterWebUIMasters}.
   */
  public MasterWebUIMasters() {
  }

  /**
   * Gets debug.
   *
   * @return the debug
   */
  public boolean getDebug() {
    return mDebug;
  }

  /**
   * Get info of lost masters.
   *
   * @return an array of lost {@link MasterInfo}
   */
  public MasterInfo[] getLostMasterInfos() {
    return mLostMasterInfos;
  }

  /**
   * Get info of standby masters.
   *
   * @return an array of standby {@link MasterInfo}
   */
  public MasterInfo[] getStandbyMasterInfos() {
    return mStandbyMasterInfos;
  }

  /**
   * Get info of the primary master.
   *
   * @return the primary {@link MasterInfo}
   */
  public MasterInfo getPrimaryMasterInfo() {
    return mPrimaryMasterInfo;
  }

  /**
   * Sets debug.
   *
   * @param debug the debug
   * @return the {@link MasterWebUIMasters} instance
   */
  public MasterWebUIMasters setDebug(boolean debug) {
    mDebug = debug;
    return this;
  }

  /**
   * Sets lost master infos.
   *
   * @param lostMasterInfos an array of lost {@link MasterInfo}
   * @return the {@link MasterWebUIMasters} instance
   */
  public MasterWebUIMasters setLostMasterInfos(MasterInfo[] lostMasterInfos) {
    mLostMasterInfos = lostMasterInfos.clone();
    return this;
  }

  /**
   * Sets standby master infos.
   *
   * @param standbyMasterInfos an array of standby {@link MasterInfo}
   * @return the {@link MasterWebUIMasters} instance
   */
  public MasterWebUIMasters setStandbyMasterInfos(MasterInfo[] standbyMasterInfos) {
    mStandbyMasterInfos = standbyMasterInfos.clone();
    return this;
  }

  /**
   * Sets primary master info.
   *
   * @param primaryMasterInfo the primary {@link MasterInfo}
   * @return the {@link MasterWebUIMasters} instance
   */
  public MasterWebUIMasters setPrimaryMasterInfo(MasterInfo primaryMasterInfo) {
    mPrimaryMasterInfo = primaryMasterInfo;
    return this;
  }

  @Override
  public String toString() {
    return MoreObjects.toStringHelper(this).add("debug", mDebug)
        .add("lostMasterInfos", mLostMasterInfos)
        .add("standbyMasterInfos", mStandbyMasterInfos)
        .add("primaryMasterInfo", mPrimaryMasterInfo).toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy