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

poussecafe.doc.model.processstepdoc.ProcessStepDocFactory Maven / Gradle / Ivy

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

import poussecafe.doc.model.BoundedContextComponentDoc;
import poussecafe.domain.Factory;

public class ProcessStepDocFactory extends Factory {

    public ProcessStepDoc createMessageListenerDoc(
            ProcessStepDocId id,
            BoundedContextComponentDoc boundedContextComponentDoc) {
        ProcessStepDoc doc = newAggregateWithId(id);
        doc.attributes().boundedContextComponentDoc().value(boundedContextComponentDoc);
        return doc;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy