public interface Component extends Service, ComponentTypes
Component
interface provides methods to retrieve authentication
information of a component element.
A component element is said to contain authentication information if any one of package elements contained in it has authentication information.
_VAPI_SERVICE_ID, RESOURCE_TYPE
Modifier and Type | Method and Description |
---|---|
java.lang.String |
fingerprint(java.lang.String componentId)
Retrieves the fingerprint computed from the authentication metadata of the
component element corresponding to
componentId . |
void |
fingerprint(java.lang.String componentId,
AsyncCallback<java.lang.String> asyncCallback)
Retrieves the fingerprint computed from the authentication metadata of the
component element corresponding to
componentId . |
void |
fingerprint(java.lang.String componentId,
AsyncCallback<java.lang.String> asyncCallback,
InvocationConfig invocationConfig)
Retrieves the fingerprint computed from the authentication metadata of the
component element corresponding to
componentId . |
java.lang.String |
fingerprint(java.lang.String componentId,
InvocationConfig invocationConfig)
Retrieves the fingerprint computed from the authentication metadata of the
component element corresponding to
componentId . |
ComponentData |
get(java.lang.String componentId)
Retrieves authentication information about the component element corresponding
to
componentId . |
void |
get(java.lang.String componentId,
AsyncCallback<ComponentData> asyncCallback)
Retrieves authentication information about the component element corresponding
to
componentId . |
void |
get(java.lang.String componentId,
AsyncCallback<ComponentData> asyncCallback,
InvocationConfig invocationConfig)
Retrieves authentication information about the component element corresponding
to
componentId . |
ComponentData |
get(java.lang.String componentId,
InvocationConfig invocationConfig)
Retrieves authentication information about the component element corresponding
to
componentId . |
java.util.List<java.lang.String> |
list()
Returns the identifiers for the component elements that have authentication
information.
|
void |
list(AsyncCallback<java.util.List<java.lang.String>> asyncCallback)
Returns the identifiers for the component elements that have authentication
information.
|
void |
list(AsyncCallback<java.util.List<java.lang.String>> asyncCallback,
InvocationConfig invocationConfig)
Returns the identifiers for the component elements that have authentication
information.
|
java.util.List<java.lang.String> |
list(InvocationConfig invocationConfig)
Returns the identifiers for the component elements that have authentication
information.
|
java.util.List<java.lang.String> list()
Synchronous method overload. Result of the invocation will be reported as a method return value.
com.vmware.vapi.component
.java.util.List<java.lang.String> list(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.
invocationConfig
- Configuration for the method invocation.com.vmware.vapi.component
.void list(AsyncCallback<java.util.List<java.lang.String>> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback
.
Invocation Result:
The list of identifiers for the component elements that have authentication
information.
The return value will contain identifiers for the resource type: com.vmware.vapi.component
.
asyncCallback
- Receives the status (progress, result or error) of the operation invocation.void list(AsyncCallback<java.util.List<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.
Invocation Result:
The list of identifiers for the component elements that have authentication
information.
The return value will contain identifiers for the resource type: com.vmware.vapi.component
.
asyncCallback
- Receives the status (progress, result or error) of the operation invocation.invocationConfig
- Configuration for the method invocation.ComponentData get(java.lang.String componentId)
componentId
.
The ComponentData
contains the
authentication information about the component element and it's fingerprint. It
contains information about all the package elements that belong to this
component element.
Synchronous method overload. Result of the invocation will be reported as a method return value.
componentId
- Identifier of the component element.
The parameter must be an identifier for the resource type: com.vmware.vapi.component
.ComponentData
instance that
corresponds to componentId
NotFound
- if the component element associated with componentId
does not have any
authentication information.ComponentData get(java.lang.String componentId, InvocationConfig invocationConfig)
componentId
.
The ComponentData
contains the
authentication information about the component element and it's fingerprint. It
contains information about all the package elements that belong to this
component element.
Synchronous method overload. Result of the invocation will be
reported as a method return value.
Use invocationConfig
to specify configuration for this particular invocation.
componentId
- Identifier of the component element.
The parameter must be an identifier for the resource type: com.vmware.vapi.component
.invocationConfig
- Configuration for the method invocation.ComponentData
instance that
corresponds to componentId
NotFound
- if the component element associated with componentId
does not have any
authentication information.void get(java.lang.String componentId, AsyncCallback<ComponentData> asyncCallback)
componentId
.
The ComponentData
contains the
authentication information about the component element and it's fingerprint. It
contains information about all the package elements that belong to this
component element.
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback
.
Invocation Result:
The ComponentData
instance that
corresponds to componentId
Operation Errors:
NotFound
- if the component element associated with componentId
does not have any
authentication information.
componentId
- Identifier of the component element.
The parameter must be an identifier for the resource type: com.vmware.vapi.component
.asyncCallback
- Receives the status (progress, result or error) of the operation invocation.void get(java.lang.String componentId, AsyncCallback<ComponentData> asyncCallback, InvocationConfig invocationConfig)
componentId
.
The ComponentData
contains the
authentication information about the component element and it's fingerprint. It
contains information about all the package elements that belong to this
component element.
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback
.
Use invocationConfig
to specify configuration for this particular invocation.
Invocation Result:
The ComponentData
instance that
corresponds to componentId
Operation Errors:
NotFound
- if the component element associated with componentId
does not have any
authentication information.
componentId
- Identifier of the component element.
The parameter must be an identifier for the resource type: com.vmware.vapi.component
.asyncCallback
- Receives the status (progress, result or error) of the operation invocation.invocationConfig
- Configuration for the method invocation.java.lang.String fingerprint(java.lang.String componentId)
componentId
.
The fingerprint
provides clients an efficient way to check if the metadata for a particular
component has been modified on the server. The client can do this by comparing
the result of this operation with the fingerprint returned in the result of
get(java.lang.String)
.
Synchronous method overload. Result of the invocation will be reported as a method return value.
componentId
- Identifier of the component element.
The parameter must be an identifier for the resource type: com.vmware.vapi.component
.NotFound
- if the component element associated with componentId
does not have any
authentication information.java.lang.String fingerprint(java.lang.String componentId, InvocationConfig invocationConfig)
componentId
.
The fingerprint
provides clients an efficient way to check if the metadata for a particular
component has been modified on the server. The client can do this by comparing
the result of this operation with the fingerprint returned in the result of
get(java.lang.String)
.
Synchronous method overload. Result of the invocation will be
reported as a method return value.
Use invocationConfig
to specify configuration for this particular invocation.
componentId
- Identifier of the component element.
The parameter must be an identifier for the resource type: com.vmware.vapi.component
.invocationConfig
- Configuration for the method invocation.NotFound
- if the component element associated with componentId
does not have any
authentication information.void fingerprint(java.lang.String componentId, AsyncCallback<java.lang.String> asyncCallback)
componentId
.
The fingerprint
provides clients an efficient way to check if the metadata for a particular
component has been modified on the server. The client can do this by comparing
the result of this operation with the fingerprint returned in the result of
get(java.lang.String)
.
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback
.
Invocation Result:
The fingerprint computed from the authentication metadata of the component.
Operation Errors:
NotFound
- if the component element associated with componentId
does not have any
authentication information.
componentId
- Identifier of the component element.
The parameter must be an identifier for the resource type: com.vmware.vapi.component
.asyncCallback
- Receives the status (progress, result or error) of the operation invocation.void fingerprint(java.lang.String componentId, AsyncCallback<java.lang.String> asyncCallback, InvocationConfig invocationConfig)
componentId
.
The fingerprint
provides clients an efficient way to check if the metadata for a particular
component has been modified on the server. The client can do this by comparing
the result of this operation with the fingerprint returned in the result of
get(java.lang.String)
.
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback
.
Use invocationConfig
to specify configuration for this particular invocation.
Invocation Result:
The fingerprint computed from the authentication metadata of the component.
Operation Errors:
NotFound
- if the component element associated with componentId
does not have any
authentication information.
componentId
- Identifier of the component element.
The parameter must be an identifier for the resource type: com.vmware.vapi.component
.asyncCallback
- Receives the status (progress, result or error) of the operation invocation.invocationConfig
- Configuration for the method invocation.