Package com.adobe.aio.cloudmanager
Interface ContentFlow
-
public interface ContentFlow
A Content Flow operation.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ContentFlow.Results
Representation of Export/Import results.static class
ContentFlow.Status
Potential states for Content Flow process.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
cancel()
Cancel this content flow.String
getContentSetId()
The id of the content set used for this flow.String
getDestEnvironmentId()
The id of the Environment to which content is copied.String
getDestEnvironmentName()
The name of the Environment to which content is copied.Environment.Tier
getEnvironmentTier()
The tier of the source and destination environments.ContentFlow.Results
getExportResults()
The results of the content flow export process.ContentFlow.Status
getFlowStatus()
The status of the content flow process.String
getId()
The id of this content flow.ContentFlow.Results
getImportResults()
The results of the content flow import processString
getSrcEnvironmentId()
The id of the Environment from which content is copied.String
getSrcEnvironmentName()
The name of the Environment from which content is copied.
-
-
-
Method Detail
-
getId
String getId()
The id of this content flow.- Returns:
- the id
-
getContentSetId
String getContentSetId()
The id of the content set used for this flow.- Returns:
- the content set id
-
getSrcEnvironmentId
String getSrcEnvironmentId()
The id of the Environment from which content is copied.- Returns:
- the source environment id
-
getSrcEnvironmentName
String getSrcEnvironmentName()
The name of the Environment from which content is copied.- Returns:
- the source environment name
-
getDestEnvironmentId
String getDestEnvironmentId()
The id of the Environment to which content is copied.- Returns:
- the source environment id
-
getDestEnvironmentName
String getDestEnvironmentName()
The name of the Environment to which content is copied.- Returns:
- the source environment name
-
getEnvironmentTier
Environment.Tier getEnvironmentTier()
The tier of the source and destination environments. (At this time, always `AUTHOR`)- Returns:
- the environment tier
-
getFlowStatus
ContentFlow.Status getFlowStatus()
The status of the content flow process.See the documentation.
- Returns:
- the status
-
getExportResults
ContentFlow.Results getExportResults()
The results of the content flow export process.- Returns:
- the export results
-
getImportResults
ContentFlow.Results getImportResults()
The results of the content flow import process- Returns:
- the import results
-
cancel
void cancel() throws CloudManagerApiException
Cancel this content flow.- Throws:
CloudManagerApiException
- when any error occurs
-
-