/*
* Copyright (c) 2016 The original author or authors
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* The Apache License v2.0 is available at
* http://www.opensource.org/licenses/apache2.0.php
*
* You may elect to redistribute this code under either of these licenses.
*/
package io.vertx.ext.consul;
import io.vertx.codegen.annotations.DataObject;
import io.vertx.core.json.JsonObject;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.List;
Holds result of sessions query
Author: Ruslan Sennov
/**
* Holds result of sessions query
*
* @author <a href="mailto:ruslan.sennov@gmail.com">Ruslan Sennov</a>
*/
@DataObject(generateConverter = true)
public class SessionList {
private long index;
private List<Session> list;
Default constructor
/**
* Default constructor
*/
public SessionList() {}
Copy constructor
Params: - other – the one to copy
/**
* Copy constructor
*
* @param other the one to copy
*/
public SessionList(SessionList other) {
this.index = other.index;
this.list = other.list;
}
Constructor from JSON
Params: - json – the JSON
/**
* Constructor from JSON
*
* @param json the JSON
*/
public SessionList(JsonObject json) {
SessionListConverter.fromJson(json, this);
}
Convert to JSON
Returns: the JSON
/**
* Convert to JSON
*
* @return the JSON
*/
public JsonObject toJson() {
JsonObject jsonObject = new JsonObject();
SessionListConverter.toJson(this, jsonObject);
return jsonObject;
}
Get Consul index
Returns: the consul index
/**
* Get Consul index
*
* @return the consul index
*/
public long getIndex() {
return index;
}
Set Consul index, a unique identifier representing the current state of the requested list of sessions
Params: - index – the consul index
Returns: reference to this, for fluency
/**
* Set Consul index, a unique identifier representing the current state of the requested list of sessions
*
* @param index the consul index
* @return reference to this, for fluency
*/
public SessionList setIndex(long index) {
this.index = index;
return this;
}
Get list of sessions
Returns: the list of sessions
/**
* Get list of sessions
*
* @return the list of sessions
*/
public List<Session> getList() {
return list;
}
Set list of sessions
Params: - list – the list of sessions
Returns: reference to this, for fluency
/**
* Set list of sessions
*
* @param list the list of sessions
* @return reference to this, for fluency
*/
public SessionList setList(List<Session> list) {
this.list = list;
return this;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
SessionList that = (SessionList) o;
if (index != that.index) return false;
return list != null ? sorted().equals(that.sorted()) : that.list == null;
}
@Override
public int hashCode() {
int result = (int) (index ^ (index >>> 32));
result = 31 * result + (list != null ? sorted().hashCode() : 0);
return result;
}
private List<Session> sorted() {
List<Session> sorted = null;
if (list != null) {
sorted = new ArrayList<>(list);
sorted.sort(Comparator.comparing(Session::getId));
}
return sorted;
}
}