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

com.aerospike.example.sync.SyncCustomerRepository Maven / Gradle / Ivy

The newest version!
package com.aerospike.example.sync;

import org.springframework.data.aerospike.repository.AerospikeRepository;
import org.springframework.data.repository.CrudRepository;

import java.util.List;

public interface SyncCustomerRepository extends AerospikeRepository, CrudRepository {
    List findByLastNameOrderByFirstNameAsc(String lastName);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy