Package org.italiangrid.voms.request
Class VOMSProtocolError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.italiangrid.voms.VOMSError
-
- org.italiangrid.voms.request.VOMSProtocolError
-
- All Implemented Interfaces:
java.io.Serializable
public class VOMSProtocolError extends VOMSError
Exception used when errors are raised during the interaction with a (possibly) remote VOMS server.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private eu.emi.security.authn.x509.X509Credential
credential
The credential related with this errorprivate VOMSACRequest
request
The request that is related with this errorprivate static long
serialVersionUID
private VOMSServerInfo
serverInfo
The VOMS server endpoint information related with this error
-
Constructor Summary
Constructors Constructor Description VOMSProtocolError(java.lang.String message, VOMSServerInfo serv, VOMSACRequest req, eu.emi.security.authn.x509.X509Credential cred, java.lang.Throwable c)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description eu.emi.security.authn.x509.X509Credential
getCredential()
VOMSACRequest
getRequest()
VOMSServerInfo
getServerInfo()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
request
private final VOMSACRequest request
The request that is related with this error
-
credential
private final eu.emi.security.authn.x509.X509Credential credential
The credential related with this error
-
serverInfo
private final VOMSServerInfo serverInfo
The VOMS server endpoint information related with this error
-
-
Constructor Detail
-
VOMSProtocolError
public VOMSProtocolError(java.lang.String message, VOMSServerInfo serv, VOMSACRequest req, eu.emi.security.authn.x509.X509Credential cred, java.lang.Throwable c)
-
-
Method Detail
-
getRequest
public VOMSACRequest getRequest()
- Returns:
- the request that is related with this error
-
getCredential
public eu.emi.security.authn.x509.X509Credential getCredential()
- Returns:
- the client credential related with this error
-
getServerInfo
public VOMSServerInfo getServerInfo()
- Returns:
- the VOMS serverInfo related with this error
-
-