WhoAmIResponse.java
// File generated by hadoop record compiler. Do not edit.
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.zookeeper.proto;
import org.apache.jute.*;
import org.apache.jute.Record; // JDK14 needs explicit import due to clash with java.lang.Record
import org.apache.yetus.audience.InterfaceAudience;
@InterfaceAudience.Public
public class WhoAmIResponse implements Record {
private java.util.List<org.apache.zookeeper.data.ClientInfo> clientInfo;
public WhoAmIResponse() {
}
public WhoAmIResponse(
java.util.List<org.apache.zookeeper.data.ClientInfo> clientInfo) {
this.clientInfo=clientInfo;
}
public java.util.List<org.apache.zookeeper.data.ClientInfo> getClientInfo() {
return clientInfo;
}
public void setClientInfo(java.util.List<org.apache.zookeeper.data.ClientInfo> m_) {
clientInfo=m_;
}
public void serialize(OutputArchive a_, String tag) throws java.io.IOException {
a_.startRecord(this,tag);
{
a_.startVector(clientInfo,"clientInfo");
if (clientInfo!= null) { int len1 = clientInfo.size();
for(int vidx1 = 0; vidx1<len1; vidx1++) {
org.apache.zookeeper.data.ClientInfo e1 = (org.apache.zookeeper.data.ClientInfo) clientInfo.get(vidx1);
a_.writeRecord(e1,"e1");
}
}
a_.endVector(clientInfo,"clientInfo");
}
a_.endRecord(this,tag);
}
public void deserialize(InputArchive a_, String tag) throws java.io.IOException {
a_.startRecord(tag);
{
Index vidx1 = a_.startVector("clientInfo");
if (vidx1!= null) { clientInfo=new java.util.ArrayList<org.apache.zookeeper.data.ClientInfo>();
for (; !vidx1.done(); vidx1.incr()) {
org.apache.zookeeper.data.ClientInfo e1;
e1= new org.apache.zookeeper.data.ClientInfo();
a_.readRecord(e1,"e1");
clientInfo.add(e1);
}
}
a_.endVector("clientInfo");
}
a_.endRecord(tag);
}
public String toString() {
try {
java.io.ByteArrayOutputStream s =
new java.io.ByteArrayOutputStream();
ToStringOutputArchive a_ =
new ToStringOutputArchive(s);
a_.startRecord(this,"");
{
a_.startVector(clientInfo,"clientInfo");
if (clientInfo!= null) { int len1 = clientInfo.size();
for(int vidx1 = 0; vidx1<len1; vidx1++) {
org.apache.zookeeper.data.ClientInfo e1 = (org.apache.zookeeper.data.ClientInfo) clientInfo.get(vidx1);
a_.writeRecord(e1,"e1");
}
}
a_.endVector(clientInfo,"clientInfo");
}
a_.endRecord(this,"");
return new String(s.toByteArray(), java.nio.charset.StandardCharsets.UTF_8);
} catch (Throwable ex) {
ex.printStackTrace();
}
return "ERROR";
}
public void write(java.io.DataOutput out) throws java.io.IOException {
BinaryOutputArchive archive = new BinaryOutputArchive(out);
serialize(archive, "");
}
public void readFields(java.io.DataInput in) throws java.io.IOException {
BinaryInputArchive archive = new BinaryInputArchive(in);
deserialize(archive, "");
}
public int compareTo (Object peer_) throws ClassCastException {
throw new UnsupportedOperationException("comparing WhoAmIResponse is unimplemented");
}
public boolean equals(Object peer_) {
if (!(peer_ instanceof WhoAmIResponse)) {
return false;
}
if (peer_ == this) {
return true;
}
WhoAmIResponse peer = (WhoAmIResponse) peer_;
boolean ret = false;
ret = clientInfo.equals(peer.clientInfo);
if (!ret) return ret;
return ret;
}
public int hashCode() {
int result = 17;
int ret;
ret = clientInfo.hashCode();
result = 37*result + ret;
return result;
}
public static String signature() {
return "LWhoAmIResponse([LClientInfo(ss)])";
}
}