org.enodeframework.domain.AggregateRootFactory.kt Maven / Gradle / Ivy
package org.enodeframework.domain
/**
* Defines a factory to create empty aggregate root.
*/
interface AggregateRootFactory {
/**
* Create an empty aggregate root with the given type.
*/
fun createAggregateRoot(aggregateRootType: Class): T
}