Interface ExportAndPublishService
-
public interface ExportAndPublishService
Service interface for Export and Publish Operations. This interface will be implemented by both FM and CM to handle export and publish of their corresponding assets
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]
exportAll(java.lang.String packageName)
This API exports all the assets of supported types and external assets used within them.void
publishAll()
This API publishes all Modified assets of supported types and external assets used within them.
-
-
-
Method Detail
-
publishAll
void publishAll() throws FormsFoundationException
This API publishes all Modified assets of supported types and external assets used within them.- Throws:
FormsFoundationException
-
exportAll
byte[] exportAll(java.lang.String packageName) throws FormsFoundationException
This API exports all the assets of supported types and external assets used within them.- Parameters:
packageName
- Name of the exported package file- Returns:
- bytes of the exported package
- Throws:
FormsFoundationException
-
-