1 17 package org.apache.geronimo.mail; 18 19 import javax.mail.Folder ; 20 import javax.mail.MessagingException ; 21 import javax.mail.Session ; 22 import javax.mail.Store ; 23 import javax.mail.URLName ; 24 25 26 29 public class TestStore extends Store { 30 31 public TestStore(Session session, URLName urlName) { 32 super(session, urlName); 33 } 34 35 public Folder getDefaultFolder() throws MessagingException { 36 return null; 37 } 38 39 public Folder getFolder(String s) throws MessagingException { 40 return null; 41 } 42 43 public Folder getFolder(URLName urlName) throws MessagingException { 44 return null; 45 } 46 } 47 | Popular Tags |