ing
This commit is contained in:
parent
b05a39b17b
commit
93211ade57
@ -2,7 +2,6 @@ package com.loafle.overflow.service.central.member;
|
|||||||
|
|
||||||
import com.loafle.overflow.core.annotation.WebappAPI;
|
import com.loafle.overflow.core.annotation.WebappAPI;
|
||||||
import com.loafle.overflow.core.exception.OverflowException;
|
import com.loafle.overflow.core.exception.OverflowException;
|
||||||
import com.loafle.overflow.model.domain.Domain;
|
|
||||||
import com.loafle.overflow.model.domain.DomainMember;
|
import com.loafle.overflow.model.domain.DomainMember;
|
||||||
import com.loafle.overflow.model.member.Member;
|
import com.loafle.overflow.model.member.Member;
|
||||||
|
|
||||||
@ -27,13 +26,11 @@ public interface MemberService {
|
|||||||
@WebappAPI
|
@WebappAPI
|
||||||
Member read(Long memberId) throws OverflowException;
|
Member read(Long memberId) throws OverflowException;
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
void withdrawal(Member member) throws OverflowException;
|
void withdrawal(Long memberId) throws OverflowException;
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
List<Member> readAllByProbeKey(String probeKey) throws OverflowException;
|
List<Member> readAllByProbeKey(String probeKey) throws OverflowException;
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
List<Member> readAllByApiKey(String apikey) throws OverflowException;
|
List<Member> readAllByApiKey(String apikey) throws OverflowException;
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
List<Member> readAllByDomain(Domain domain) throws OverflowException;
|
|
||||||
@WebappAPI
|
|
||||||
List<Member> readAllByDomainID(final Long domainID) throws OverflowException;
|
List<Member> readAllByDomainID(final Long domainID) throws OverflowException;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user