org.apache.avro.ipc
Class HandshakeRequest

java.lang.Object
  extended by org.apache.avro.specific.SpecificRecordBase
      extended by org.apache.avro.ipc.HandshakeRequest
All Implemented Interfaces:
Comparable<SpecificRecord>, GenericContainer, IndexedRecord, SpecificRecord

public class HandshakeRequest
extends SpecificRecordBase
implements SpecificRecord


Nested Class Summary
static class HandshakeRequest.Builder
          RecordBuilder for HandshakeRequest instances.
 
Field Summary
 MD5 clientHash
          Deprecated. 
 String clientProtocol
          Deprecated. 
 Map<String,ByteBuffer> meta
          Deprecated. 
static Schema SCHEMA$
           
 MD5 serverHash
          Deprecated. 
 
Constructor Summary
HandshakeRequest()
           
 
Method Summary
 Object get(int field$)
          Return the value of a field given its position in the schema.
 MD5 getClientHash()
          Gets the value of the 'clientHash' field.
 String getClientProtocol()
          Gets the value of the 'clientProtocol' field.
 Map<String,ByteBuffer> getMeta()
          Gets the value of the 'meta' field.
 Schema getSchema()
          The schema of this instance.
 MD5 getServerHash()
          Gets the value of the 'serverHash' field.
static HandshakeRequest.Builder newBuilder()
          Creates a new HandshakeRequest RecordBuilder
static HandshakeRequest.Builder newBuilder(HandshakeRequest.Builder other)
          Creates a new HandshakeRequest RecordBuilder by copying an existing Builder
static HandshakeRequest.Builder newBuilder(HandshakeRequest other)
          Creates a new HandshakeRequest RecordBuilder by copying an existing HandshakeRequest instance
 void put(int field$, Object value$)
          Set the value of a field given its position in the schema.
 void setClientHash(MD5 value)
          Sets the value of the 'clientHash' field.
 void setClientProtocol(String value)
          Sets the value of the 'clientProtocol' field.
 void setMeta(Map<String,ByteBuffer> value)
          Sets the value of the 'meta' field.
 void setServerHash(MD5 value)
          Sets the value of the 'serverHash' field.
 
Methods inherited from class org.apache.avro.specific.SpecificRecordBase
compareTo, equals, hashCode, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

SCHEMA$

public static final Schema SCHEMA$

clientHash

@Deprecated
public MD5 clientHash
Deprecated. 

clientProtocol

@Deprecated
public String clientProtocol
Deprecated. 

serverHash

@Deprecated
public MD5 serverHash
Deprecated. 

meta

@Deprecated
public Map<String,ByteBuffer> meta
Deprecated. 
Constructor Detail

HandshakeRequest

public HandshakeRequest()
Method Detail

getSchema

public Schema getSchema()
Description copied from interface: GenericContainer
The schema of this instance.

Specified by:
getSchema in interface GenericContainer
Specified by:
getSchema in class SpecificRecordBase

get

public Object get(int field$)
Description copied from interface: IndexedRecord
Return the value of a field given its position in the schema.

This method is not meant to be called by user code, but only by DatumWriter implementations.

Specified by:
get in interface IndexedRecord
Specified by:
get in class SpecificRecordBase

put

public void put(int field$,
                Object value$)
Description copied from interface: IndexedRecord
Set the value of a field given its position in the schema.

This method is not meant to be called by user code, but only by DatumReader implementations.

Specified by:
put in interface IndexedRecord
Specified by:
put in class SpecificRecordBase

getClientHash

public MD5 getClientHash()
Gets the value of the 'clientHash' field.


setClientHash

public void setClientHash(MD5 value)
Sets the value of the 'clientHash' field.

Parameters:
value - the value to set.

getClientProtocol

public String getClientProtocol()
Gets the value of the 'clientProtocol' field.


setClientProtocol

public void setClientProtocol(String value)
Sets the value of the 'clientProtocol' field.

Parameters:
value - the value to set.

getServerHash

public MD5 getServerHash()
Gets the value of the 'serverHash' field.


setServerHash

public void setServerHash(MD5 value)
Sets the value of the 'serverHash' field.

Parameters:
value - the value to set.

getMeta

public Map<String,ByteBuffer> getMeta()
Gets the value of the 'meta' field.


setMeta

public void setMeta(Map<String,ByteBuffer> value)
Sets the value of the 'meta' field.

Parameters:
value - the value to set.

newBuilder

public static HandshakeRequest.Builder newBuilder()
Creates a new HandshakeRequest RecordBuilder


newBuilder

public static HandshakeRequest.Builder newBuilder(HandshakeRequest.Builder other)
Creates a new HandshakeRequest RecordBuilder by copying an existing Builder


newBuilder

public static HandshakeRequest.Builder newBuilder(HandshakeRequest other)
Creates a new HandshakeRequest RecordBuilder by copying an existing HandshakeRequest instance



Copyright © 2009-2011 The Apache Software Foundation. All Rights Reserved.