Class PluginApiSpec
- java.lang.Object
-
- com.pingidentity.sdk.api.authn.spec.PluginApiSpec
-
public class PluginApiSpec extends Object
A class describing the API offered by a plugin. This is used by PingFederate to generate API documentation for the plugin.- Since:
- 9.3
-
-
Constructor Summary
Constructors Constructor Description PluginApiSpec(List<AuthnStateSpec<?>> states)Create an instance based on the specified parameters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AuthnStateSpec<?>>getStates()Get the states available in the plugin's API.voidsetStates(List<AuthnStateSpec<?>> states)Set the states available in the plugin's API.
-
-
-
Constructor Detail
-
PluginApiSpec
public PluginApiSpec(List<AuthnStateSpec<?>> states)
Create an instance based on the specified parameters.- Parameters:
states- The states available in the plugin's API.
-
-
Method Detail
-
getStates
public List<AuthnStateSpec<?>> getStates()
Get the states available in the plugin's API.
-
setStates
public void setStates(List<AuthnStateSpec<?>> states)
Set the states available in the plugin's API.
-
-