mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Implemented Unpublishing of content.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29593 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -21,16 +21,21 @@ package org.alfresco.repo.publishing;
|
||||
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.util.Map;
|
||||
|
||||
import org.alfresco.service.cmr.publishing.PublishingPackage;
|
||||
import org.alfresco.service.cmr.publishing.PublishingPackageEntry;
|
||||
import org.alfresco.service.cmr.repository.NodeRef;
|
||||
|
||||
/**
|
||||
* @author Brian
|
||||
* @author Nick Smith
|
||||
*
|
||||
* @since 4.0
|
||||
*/
|
||||
public interface PublishingPackageSerializer
|
||||
{
|
||||
void serialize(PublishingPackage publishingPackage, OutputStream output) throws Exception;
|
||||
|
||||
PublishingPackage deserialize(InputStream input) throws Exception;
|
||||
Map<NodeRef, PublishingPackageEntry> deserialize(InputStream input) throws Exception;
|
||||
}
|
||||
|
Reference in New Issue
Block a user