Interface ExportAndPublishService
-
public interface ExportAndPublishServiceService 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.voidpublishAll()This API publishes all Modified assets of supported types and external assets used within them.
-
-
-
Method Detail
-
publishAll
void publishAll() throws FormsFoundationExceptionThis API publishes all Modified assets of supported types and external assets used within them.- Throws:
FormsFoundationException
-
exportAll
byte[] exportAll(java.lang.String packageName) throws FormsFoundationExceptionThis 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
-
-