IpSecManager.SecurityParameterIndex

public static final class IpSecManager.SecurityParameterIndex
extends Object implements AutoCloseable

java.lang.Object
   ↳ android.net.IpSecManager.SecurityParameterIndex


This class represents a reserved SPI.

Objects of this type are used to track reserved security parameter indices. They can be obtained by calling IpSecManager#allocateSecurityParameterIndex and must be released by calling close() when they are no longer needed.

Summary

Public methods

void close()

Release an SPI that was previously reserved.

int getSpi()

Get the underlying SPI held by this object.

String toString()

Returns a string representation of the object.

Protected methods

void finalize()

Check that the SPI was closed properly.

Inherited methods

Public methods

close

Added in API level 28
public void close ()

Release an SPI that was previously reserved.

Release an SPI for use by other users in the system. If a SecurityParameterIndex is applied to an IpSecTransform, it will become unusable for future transforms but should still be closed to ensure system resources are released.

getSpi

Added in API level 28
public int getSpi ()

Get the underlying SPI held by this object.

Returns
int

toString

Added in API level 28
public String toString ()

Returns a string representation of the object.

Returns
String a string representation of the object.

Protected methods

finalize

Added in API level 28
protected void finalize ()

Check that the SPI was closed properly.

Throws
Throwable