1 19 20 package org.apache.james.imapserver.client; 21 22 import java.io.IOException ; 23 import java.util.List ; 24 25 import javax.mail.MessagingException ; 26 27 public interface Command { 28 29 public List getExpectedResponseList() throws MessagingException , IOException ; 30 31 35 public String getExpectedStatusResponse(); 36 37 41 public String getCommand(); 42 43 } 44 | Popular Tags |