26c50909be
* move security content from spring-security-rest-full * swagger update * move query language to new module * rename spring-security-rest-full to spring-rest-full * group persistence modules
11 lines
172 B
Java
11 lines
172 B
Java
package com.baeldung;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Created by johnson on 3/9/17.
|
|
*/
|
|
public interface LedgerServiceInterface {
|
|
List<String> getEntries(int count);
|
|
}
|