public interface Thumbprint extends Service, ThumbprintTypes
Thumbprint interface provides methods to get the thumbprint of the
remote PSC. This interface was added in vSphere API 6.7.ThumbprintTypes.RemoteSpec| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
get(ThumbprintTypes.RemoteSpec spec)
Gets the SHA1 thumbprint of the remote PSC.
|
void |
get(ThumbprintTypes.RemoteSpec spec,
AsyncCallback<java.lang.String> asyncCallback)
Gets the SHA1 thumbprint of the remote PSC.
|
void |
get(ThumbprintTypes.RemoteSpec spec,
AsyncCallback<java.lang.String> asyncCallback,
InvocationConfig invocationConfig)
Gets the SHA1 thumbprint of the remote PSC.
|
java.lang.String |
get(ThumbprintTypes.RemoteSpec spec,
InvocationConfig invocationConfig)
Gets the SHA1 thumbprint of the remote PSC.
|
java.lang.String get(ThumbprintTypes.RemoteSpec spec)
Synchronous method overload. Result of the invocation will be reported as a method return value.
spec - Information used to connect to the remote PSC.Unauthenticated - if the caller is not authenticated.Error - on exception.java.lang.String get(ThumbprintTypes.RemoteSpec spec, InvocationConfig invocationConfig)
Synchronous method overload. Result of the invocation will be
reported as a method return value.
Use invocationConfig to specify configuration for this particular invocation.
spec - Information used to connect to the remote PSC.invocationConfig - Configuration for the method invocation.Unauthenticated - if the caller is not authenticated.Error - on exception.void get(ThumbprintTypes.RemoteSpec spec, AsyncCallback<java.lang.String> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Operation Result:
The thumbprint of the specified remote PSC
Operation Errors:
Unauthenticated - if the caller is not authenticated.
Error - on exception.
spec - Information used to connect to the remote PSC.asyncCallback - Receives the status (progress, result or error) of the operation invocation.void get(ThumbprintTypes.RemoteSpec spec, AsyncCallback<java.lang.String> asyncCallback, InvocationConfig invocationConfig)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Use invocationConfig to specify configuration for this particular invocation.
Operation Result:
The thumbprint of the specified remote PSC
Operation Errors:
Unauthenticated - if the caller is not authenticated.
Error - on exception.
spec - Information used to connect to the remote PSC.asyncCallback - Receives the status (progress, result or error) of the operation invocation.invocationConfig - Configuration for the method invocation.