Package com.netscape.certsrv.connector
Interface IRemoteAuthority
-
public interface IRemoteAuthority
This represents a remote authority that can be a certificate manager, or key recovery manager or some other manager.- Version:
- $Revision$, $Date$
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getContentType()
Retrieves the Content-Type value of the connection to the Remote Authority.java.lang.String
getHost()
Retrieves the host name of the remote Authority.int
getPort()
Retrieves the port number of the remote Authority.int
getTimeout()
Retrieves the timeout value for the connection to the remote Authority.java.lang.String
getURI()
Retrieves the URI of the remote Authority.java.lang.String
getURI(java.lang.String op)
Retrieves an URI by operation (multi-URI support)java.util.Hashtable<java.lang.String,java.lang.String>
getURIs()
Retrieves the list of URIs supported by the remote Authority (multi-URI support)
-
-
-
Method Detail
-
getHost
java.lang.String getHost()
Retrieves the host name of the remote Authority.- Returns:
- String with the name of host of remote Authority.
-
getPort
int getPort()
Retrieves the port number of the remote Authority.- Returns:
- Int with port number of remote Authority.
-
getURI
java.lang.String getURI()
Retrieves the URI of the remote Authority.- Returns:
- String with URI of remote Authority.
-
getURIs
java.util.Hashtable<java.lang.String,java.lang.String> getURIs()
Retrieves the list of URIs supported by the remote Authority (multi-URI support)
-
getURI
java.lang.String getURI(java.lang.String op)
Retrieves an URI by operation (multi-URI support)- Parameters:
op
- operation to determine the receiving servlet
-
getTimeout
int getTimeout()
Retrieves the timeout value for the connection to the remote Authority.- Returns:
- In with remote Authority timeout value.
-
getContentType
java.lang.String getContentType()
Retrieves the Content-Type value of the connection to the Remote Authority.- Returns:
- String with Content-Type, if it was set
-
-