
com.capitalone.dashboard.repository.TemplateRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hygieia-common Show documentation
Show all versions of hygieia-common Show documentation
Core package shared by API layer and Microservices
The newest version!
package com.capitalone.dashboard.repository;
import com.capitalone.dashboard.model.Template;
import org.bson.types.ObjectId;
/**
* {@link Template} repository.
*/
public interface TemplateRepository extends QueryRepository {
Template findByTemplate(String template);
void deleteById(ObjectId id);
default void delete(ObjectId id) {
deleteById(id);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy