Class AuthnErrorGroup
- java.lang.Object
-
- com.pingidentity.sdk.api.authn.spec.AuthnErrorGroup
-
public class AuthnErrorGroup extends Object
A class that describes a group of errors returned by the Authentication API. This includes the spec of the top-level error, as well as the specs for a list of error details that may be included with that error. This class is used by PingFederate in generating API documentation.- Since:
- 9.3
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAuthnErrorGroup.BuilderA fluent builder forAuthnErrorGroupinstances.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthnErrorSpecgetError()Get the spec for the top-level error.List<AuthnErrorDetailSpec>getErrorDetails()Get the specs for error details that may be included with the top-level error.
-
-
-
Method Detail
-
getError
public AuthnErrorSpec getError()
Get the spec for the top-level error.
-
getErrorDetails
public List<AuthnErrorDetailSpec> getErrorDetails()
Get the specs for error details that may be included with the top-level error.
-
-