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

poussecafe.doc.model.boundedcontextdoc.BoundedContextDocRepository Maven / Gradle / Ivy

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

import java.util.List;
import poussecafe.domain.Repository;

public class BoundedContextDocRepository extends Repository {

    public List findAll() {
        return wrap(dataAccess().findAll());
    }

    @Override
    public BoundedContextDocDataAccess dataAccess() {
        return (BoundedContextDocDataAccess) super.dataAccess();
    }

    public BoundedContextDoc findByPackageNamePrefixing(String name) {
        return wrap(dataAccess().findByPackageNamePrefixing(name));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy