package 정리
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package com.eactive.httpmockserver.api.service;
|
||||
|
||||
import com.eactive.httpmockserver.api.entity.HttpRequestInfo;
|
||||
import org.springframework.data.domain.Example;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
public interface HttpRequestInfoService {
|
||||
public Optional<HttpRequestInfo> findById(Long id);
|
||||
|
||||
public HttpRequestInfo save(HttpRequestInfo httpRequestInfo);
|
||||
|
||||
public List<HttpRequestInfo> findAllHttpRequestInfos(Pageable pageable);
|
||||
|
||||
public List<HttpRequestInfo> findHttpRequestInfos(Example<HttpRequestInfo> example, Pageable pageable);
|
||||
|
||||
public HttpRequestInfo update(HttpRequestInfo httpRequestInfo);
|
||||
|
||||
public void delete(Long id);
|
||||
|
||||
public long getRecordsCount(Example<HttpRequestInfo> example);
|
||||
}
|
||||
Reference in New Issue
Block a user