IkeSessionConnectionInfo


public final class IkeSessionConnectionInfo
extends Object

java.lang.Object
   ↳ android.net.ipsec.ike.IkeSessionConnectionInfo


IkeSessionConnectionInfo represents the connection information of an IkeSession.

Connection information includes IP addresses of both the IKE client and server and the network being used.

Summary

Public constructors

IkeSessionConnectionInfo(InetAddress localAddress, InetAddress remoteAddress, Network network)

Construct an instance of IkeSessionConnectionInfo.

Public methods

InetAddress getLocalAddress()

Returns the local IP address for the underlying Network being used.

Network getNetwork()

Returns the underlying Network being used.

InetAddress getRemoteAddress()

Returns the remote IP address for the underlying Network being used.

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Public constructors

IkeSessionConnectionInfo

Added in API level 31
public IkeSessionConnectionInfo (InetAddress localAddress, 
                InetAddress remoteAddress, 
                Network network)

Construct an instance of IkeSessionConnectionInfo.

Except for testing, IKE library users normally do not instantiate IkeSessionConnectionInfo themselves but instead get a reference via IkeSessionConfiguration or IkeSessionCallback

Parameters
localAddress InetAddress: This value cannot be null.

remoteAddress InetAddress: This value cannot be null.

network Network: This value cannot be null.

Public methods

getLocalAddress

Added in API level 31
public InetAddress getLocalAddress ()

Returns the local IP address for the underlying Network being used.

Returns
InetAddress the local IP address. This value cannot be null.

getNetwork

Added in API level 31
public Network getNetwork ()

Returns the underlying Network being used.

Returns
Network the underlying Network that carries all IKE traffic. This value cannot be null.

getRemoteAddress

Added in API level 31
public InetAddress getRemoteAddress ()

Returns the remote IP address for the underlying Network being used.

Returns
InetAddress the remote IP address. This value cannot be null.