business.models.NewPasswordRequestRepository.java Source code

Java tutorial

Introduction

Here is the source code for business.models.NewPasswordRequestRepository.java

Source

/**
 * Copyright (C) 2016  Stichting PALGA
 * This file is distributed under the GNU Affero General Public License
 * (see accompanying file <a href="{@docRoot}/LICENSE">LICENSE</a>).
 */
package business.models;

import org.springframework.data.jpa.repository.JpaRepository;

public interface NewPasswordRequestRepository extends JpaRepository<NewPasswordRequest, Long> {
    NewPasswordRequest findByToken(String token);
}