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

com.dream.repositories.TrackingRepository Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.dream.repositories;

import com.dream.models.Tracking;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

import java.util.Optional;

/**
 * Repository for {@link Tracking}
 */

@Repository
public interface TrackingRepository extends JpaRepository {

    Optional findByIpAddressAndDreamId(String ipAddress, Long dreamId);

    Optional findByIpAddressAndCommentId(String ipAddress, Long commentId);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy