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

io.etcd.jetcd.cluster.Member Maven / Gradle / Ivy

/*
 * Copyright 2016-2019 The jetcd authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License 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 io.etcd.jetcd.cluster;

import io.etcd.jetcd.Util;
import java.net.URI;
import java.util.List;

public class Member {

  private final io.etcd.jetcd.api.Member member;

  public Member(io.etcd.jetcd.api.Member member) {
    this.member = member;
  }

  /**
   * returns the member ID for this member.
   */
  public long getId() {
    return member.getID();
  }

  /**
   * returns the human-readable name of the member.
   *
   * 

If the member is not started, the name will be an empty string. */ public String getName() { return member.getName(); } /** * returns the list of URLs the member exposes to the cluster for communication. */ public List getPeerURIs() { return Util.toURIs(member.getPeerURLsList()); } /** * returns list of URLs the member exposes to clients for communication. * *

f the member is not started, clientURLs will be empty. */ public List getClientURIs() { return Util.toURIs(member.getClientURLsList()); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy