ChildSessionConfiguration


public final class ChildSessionConfiguration
extends Object

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


ChildSessionConfiguration represents the negotiated configuration for a Child Session.

Configurations include traffic selectors and internal network information.

Summary

Nested classes

class ChildSessionConfiguration.Builder

This class can be used to incrementally construct a ChildSessionConfiguration

Public methods

List<IkeTrafficSelector> getInboundTrafficSelectors()

Returns the negotiated inbound traffic selectors.

List<IkeTrafficSelector> getOutboundTrafficSelectors()

Returns the negotiated outbound traffic selectors.

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 methods

getInboundTrafficSelectors

Added in API level 31
public List<IkeTrafficSelector> getInboundTrafficSelectors ()

Returns the negotiated inbound traffic selectors.

Only inbound traffic within the range is acceptable to the Child Session.

The Android platform does not support port-based routing. Port ranges of traffic selectors are only informational.

Returns
List<IkeTrafficSelector> the inbound traffic selectors. This value cannot be null.

getOutboundTrafficSelectors

Added in API level 31
public List<IkeTrafficSelector> getOutboundTrafficSelectors ()

Returns the negotiated outbound traffic selectors.

Only outbound traffic within the range is acceptable to the Child Session.

The Android platform does not support port-based routing. Port ranges of traffic selectors are only informational.

Returns
List<IkeTrafficSelector> the outbound traffic selectors. This value cannot be null.