Package org.nuxeo.ecm.core.io
Interface DocumentTranslationMap
-
- All Known Implementing Classes:
DocumentTranslationMapImpl
public interface DocumentTranslationMap
Translation map for exported/imported documents.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<DocumentRef,DocumentRef>
getDocRefMap()
Returns the unmodifiable map of document references.String
getNewServerName()
Returns the new documents server name.String
getOldServerName()
Returns the old documents server name.void
put(DocumentRef oldRef, DocumentRef newRef)
void
putAll(Map<DocumentRef,DocumentRef> refs)
-
-
-
Method Detail
-
getOldServerName
String getOldServerName()
Returns the old documents server name.
-
getNewServerName
String getNewServerName()
Returns the new documents server name.
-
getDocRefMap
Map<DocumentRef,DocumentRef> getDocRefMap()
Returns the unmodifiable map of document references.
-
put
void put(DocumentRef oldRef, DocumentRef newRef)
-
putAll
void putAll(Map<DocumentRef,DocumentRef> refs)
-
-