Interface PersistenceService
-
- All Known Implementing Classes:
PersistenceServiceImpl
public interface PersistenceServiceContract for persistence creation. Ikasan Development Team
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanbaselinePersistenceChangesRequired()voidcreateBaselinePersistence()voidcreateFileTransferPersistence()Create the fileTransfer related persistence used by ftp and sftp.voidcreatePostBaselinePersistence()booleanfileTransferPersistenceChangesRequired()java.lang.StringgetBaselineStatus()Return the status of the underlying persistence.java.lang.StringgetFileTransferStatus()Return the status of the underlying persistence.java.lang.StringgetPostBaselineStatus()Return the status of the underlying persistence.booleanpostBaselinePersistenceChangesRequired()
-
-
-
Method Detail
-
createBaselinePersistence
void createBaselinePersistence() throws PersistenceServiceException- Throws:
PersistenceServiceException
-
baselinePersistenceChangesRequired
boolean baselinePersistenceChangesRequired() throws PersistenceServiceException- Returns:
- Throws:
PersistenceServiceException
-
createPostBaselinePersistence
void createPostBaselinePersistence() throws PersistenceServiceException- Throws:
PersistenceServiceException
-
postBaselinePersistenceChangesRequired
boolean postBaselinePersistenceChangesRequired() throws PersistenceServiceException- Returns:
- Throws:
PersistenceServiceException
-
createFileTransferPersistence
void createFileTransferPersistence() throws PersistenceServiceExceptionCreate the fileTransfer related persistence used by ftp and sftp.- Throws:
PersistenceServiceException
-
fileTransferPersistenceChangesRequired
boolean fileTransferPersistenceChangesRequired() throws PersistenceServiceException- Returns:
- Throws:
PersistenceServiceException
-
getBaselineStatus
java.lang.String getBaselineStatus() throws PersistenceServiceExceptionReturn the status of the underlying persistence.- Returns:
- Throws:
PersistenceServiceException
-
getPostBaselineStatus
java.lang.String getPostBaselineStatus() throws PersistenceServiceExceptionReturn the status of the underlying persistence.- Returns:
- Throws:
PersistenceServiceException
-
getFileTransferStatus
java.lang.String getFileTransferStatus() throws PersistenceServiceExceptionReturn the status of the underlying persistence.- Returns:
- Throws:
PersistenceServiceException
-
-