All Downloads are FREE. Search and download functionalities are using the official Maven repository.

poussecafe.doc.model.aggregatedoc.AggregateDocDataAccess Maven / Gradle / Ivy

There is a newer version: 0.29.0
Show newest version
package poussecafe.doc.model.aggregatedoc;

import java.util.List;
import poussecafe.doc.model.boundedcontextdoc.BoundedContextDocId;
import poussecafe.domain.EntityDataAccess;

public interface AggregateDocDataAccess extends EntityDataAccess {

    List findByBoundedContextId(BoundedContextDocId id);

    List findByIdClassName(String qualifiedName);

    D findByBoundedContextIdAndName(BoundedContextDocId boundedContextDocId,
            String aggregateName);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy