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
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
public int getSpi ()
Get the underlying SPI held by this object.
Returns | |
---|---|
int |
toString
public String toString ()
Returns a string representation of the object.
Returns | |
---|---|
String |
a string representation of the object. |
Protected methods
finalize
protected void finalize ()
Check that the SPI was closed properly.
Throws | |
---|---|
Throwable |