com.bootdroolsmongo.rules.RuleRepository.java Source code

Java tutorial

Introduction

Here is the source code for com.bootdroolsmongo.rules.RuleRepository.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bootdroolsmongo.rules;

import java.util.List;
import org.springframework.data.mongodb.repository.MongoRepository;

/**
 *
 * -derived queries inherited from Spring Data project
 * -write the methods and the queries are built for you
 * -CRUD methods supported
 * @author Ian
 */
public interface RuleRepository extends MongoRepository<Rule, String> {

    Rule findByMnemonic(String mnemonic);

    List<Rule> findByRule(String rule);

}