org.incode.module.note.dom.NoteModuleDomManifest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of incode-module-note-dom Show documentation
Show all versions of incode-module-note-dom Show documentation
A module allowing notes (optionally asociated with dates/calendar).
package org.incode.module.note.dom;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import org.apache.isis.applib.AppManifest;
import org.apache.isis.applib.AppManifestAbstract;
import org.apache.isis.applib.fixturescripts.FixtureScript;
/**
* Provided for isis-maven-plugin.
*/
public class NoteModuleDomManifest extends AppManifestAbstract {
public static final Builder BUILDER = Builder.forModules(
NoteModule.class // domain (entities and repositories)
);
public NoteModuleDomManifest() {
super(BUILDER);
}
}