org.enodeframework.domain.IAggregateRepositoryProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
package org.enodeframework.domain;
/**
* Represents a provider to provide the aggregate repository.
*/
public interface IAggregateRepositoryProvider {
/**
* Get the aggregateRepository for the given aggregate type.
*/
IAggregateRepositoryProxy getRepository(Class extends IAggregateRoot> aggregateRootType);
}