Returns a list of subscribed Folders belonging to this Folder's namespace that match the specified pattern. If the folder does not support subscription, this method should resolve to list . (The default implementation provided here, does just this). The pattern can contain wildcards as f
(String pattern)
| 306 | * @exception MessagingException for other failures |
| 307 | */ |
| 308 | public Folder[] listSubscribed(String pattern) throws MessagingException { |
| 309 | return list(pattern); |
| 310 | } |
| 311 | |
| 312 | /** |
| 313 | * Convenience method that returns the list of folders under this |
no test coverage detected