package org.osivia.nuxeo.component; import java.util.Map; import java.util.Map.Entry; import org.nuxeo.ecm.core.api.DocumentModel; public interface FragmentService { public Map.Entry findByCode(String code) throws FragmentServiceException; public Entry getFragmentCategory(DocumentModel doc, String uri) throws FragmentServiceException; public String prepareCreation(DocumentModel doc, Fragment specific, String fragmentCategory, String region, String belowUri, String code2) throws FragmentServiceException; }