This commit is contained in:
crusader 2018-05-24 18:53:39 +09:00
parent b05a39b17b
commit 93211ade57

View File

@ -2,7 +2,6 @@ package com.loafle.overflow.service.central.member;
import com.loafle.overflow.core.annotation.WebappAPI;
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.member.Member;
@ -27,13 +26,11 @@ public interface MemberService {
@WebappAPI
Member read(Long memberId) throws OverflowException;
@WebappAPI
void withdrawal(Member member) throws OverflowException;
void withdrawal(Long memberId) throws OverflowException;
@WebappAPI
List<Member> readAllByProbeKey(String probeKey) throws OverflowException;
@WebappAPI
List<Member> readAllByApiKey(String apikey) throws OverflowException;
@WebappAPI
List<Member> readAllByDomain(Domain domain) throws OverflowException;
@WebappAPI
List<Member> readAllByDomainID(final Long domainID) throws OverflowException;
}