public interface ExportFlag extends Service, ExportFlagTypes
ExportFlag interface provides methods for retrieving information
about the export flags supported by the server. Export flags can be specified in
a LibraryItemTypes.CreateSpec to customize an OVF
export.ExportFlagTypes.Info| Modifier and Type | Method and Description |
|---|---|
java.util.List<ExportFlagTypes.Info> |
list()
Returns information about the supported export flags by the server.
|
void |
list(AsyncCallback<java.util.List<ExportFlagTypes.Info>> asyncCallback)
Returns information about the supported export flags by the server.
|
void |
list(AsyncCallback<java.util.List<ExportFlagTypes.Info>> asyncCallback,
InvocationConfig invocationConfig)
Returns information about the supported export flags by the server.
|
java.util.List<ExportFlagTypes.Info> |
list(InvocationConfig invocationConfig)
Returns information about the supported export flags by the server.
|
java.util.List<ExportFlagTypes.Info> list()
The supported flags are:
Future server versions might support additional flags.
Synchronous method overload. Result of the invocation will be reported as a method return value.
List of supported export flags.Unauthorized - if you do not have all of the privileges described as follows: System.Read. java.util.List<ExportFlagTypes.Info> list(InvocationConfig invocationConfig)
The supported flags are:
Future server versions might support additional flags.
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.List of supported export flags.Unauthorized - if you do not have all of the privileges described as follows: System.Read. void list(AsyncCallback<java.util.List<ExportFlagTypes.Info>> asyncCallback)
The supported flags are:
Future server versions might support additional flags.
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback.
Operation Result:
A List of supported export flags.
Operation Errors:
Unauthorized - if you do not have all of the privileges described as follows:
System.Read. asyncCallback - Receives the status (progress, result or error) of the operation invocation.void list(AsyncCallback<java.util.List<ExportFlagTypes.Info>> asyncCallback, InvocationConfig invocationConfig)
The supported flags are:
Future server versions might support additional flags.
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:
A List of supported export flags.
Operation Errors:
Unauthorized - if you do not have all of the privileges described as follows:
System.Read. asyncCallback - Receives the status (progress, result or error) of the operation invocation.invocationConfig - Configuration for the method invocation.