|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.directory.shared.asn1.AbstractAsn1Object
org.apache.directory.shared.kerberos.components.HostAddresses
public class HostAddresses
Store a list of addresses. The ASN.1 grammar is :
-- NOTE: HostAddresses is always used as an OPTIONAL field and
-- should not be empty.
HostAddresses -- NOTE: subtly different from rfc1510,
-- but has a value mapping and encodes the same
::= SEQUENCE OF HostAddress
| Constructor Summary | |
|---|---|
HostAddresses()
Creates a new instance of HostAddresses. |
|
HostAddresses(HostAddress[] addresses)
Creates a new instance of HostAddresses. |
|
| Method Summary | |
|---|---|
void |
addHostAddress(HostAddress hostAddress)
Adds an HostAddresses to the list |
int |
computeLength()
Compute the hostAddresses length |
boolean |
contains(HostAddress address)
Returns true if this HostAddresses contains a specified HostAddress. |
ByteBuffer |
encode(ByteBuffer buffer)
Encode the HostAddress message to a PDU. |
boolean |
equals(Object obj)
Returns true if two HostAddresses are equal. |
HostAddress[] |
getAddresses()
Returns the contained HostAddresss as an array. |
int |
hashCode()
|
String |
toString()
|
| Methods inherited from class org.apache.directory.shared.asn1.AbstractAsn1Object |
|---|
addLength, getCurrentLength, getExpectedLength, getParent, getTlvId, setCurrentLength, setExpectedLength, setParent |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public HostAddresses()
public HostAddresses(HostAddress[] addresses)
addresses - The associated addresses| Method Detail |
|---|
public void addHostAddress(HostAddress hostAddress)
HostAddresses to the list
hostAddress - The address to addpublic boolean contains(HostAddress address)
HostAddresses contains a specified HostAddress.
address - The address we are looking for in the existing list
HostAddresses contains a specified HostAddress.public int hashCode()
hashCode in class Objectpublic boolean equals(Object obj)
HostAddresses are equal.
equals in class Objectthat - Th HostAddresses we want to compare with the current one
HostAddresses are equal.public HostAddress[] getAddresses()
HostAddresss as an array.
HostAddresss.public int computeLength()
HostAddresses :
0x30 L1 hostAddresses sequence of HostAddresses
|
+--> 0x30 L2[1] Hostaddress[1]
|
+--> 0x30 L2[2] Hostaddress[2]
|
...
|
+--> 0x30 L2[n] Hostaddress[n]
where L1 = sum( L2[1], l2[2], ..., L2[n] )
public ByteBuffer encode(ByteBuffer buffer)
throws org.apache.directory.shared.asn1.EncoderException
HostAddress : 0x30 LL 0x30 LL hostaddress[1] 0x30 LL hostaddress[1] ... 0x30 LL hostaddress[1]
encode in interface org.apache.directory.shared.asn1.Asn1Objectencode in class org.apache.directory.shared.asn1.AbstractAsn1Objectbuffer - The buffer where to put the PDU. It should have been allocated
before, with the right size.
org.apache.directory.shared.asn1.EncoderExceptionpublic String toString()
toString in class ObjectObject.toString()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||