Package org.apache.james.mailbox

Examples of org.apache.james.mailbox.SubscriptionException


        boolean changed = subscriptionNames.remove(subscription.getMailbox());
        if (changed) {
            try {
                writeSubscriptions(new File(store.userRoot(subscription.getUser())), subscriptionNames);
            } catch (IOException e) {
                throw new SubscriptionException(e);
            }
        }
    }
View Full Code Here


        File userRoot = new File(store.userRoot(user));
        Set<String> subscriptionNames;
        try {
            subscriptionNames = readSubscriptions(userRoot);
        } catch (IOException e) {
            throw new SubscriptionException(e);
        }
        if (subscriptionNames.contains(mailbox))
            return new SimpleSubscription(user, mailbox);
        return null;
    }
View Full Code Here

        boolean changed = subscriptionNames.add(subscription.getMailbox());
        if (changed) {
            try {
                writeSubscriptions(new File(store.userRoot(subscription.getUser())), subscriptionNames);
            } catch (IOException e) {
                throw new SubscriptionException(e);
            }
        }
    }
View Full Code Here

        File userRoot = new File(store.userRoot(user));
        Set<String> subscriptionNames;
        try {
            subscriptionNames = readSubscriptions(userRoot);
        } catch (IOException e) {
            throw new SubscriptionException(e);
        }
        return subscriptionNames;
    }
View Full Code Here

                }
            }
        } catch (PathNotFoundException e) {
            // do nothing
        } catch (RepositoryException e) {
            throw new SubscriptionException(e);
        }

    }
View Full Code Here

            }
           
        } catch (PathNotFoundException e) {
            // nothing todo here
        } catch (RepositoryException e) {
            throw new SubscriptionException(e);
        }
        return null;

    }
View Full Code Here

                }
            }
        } catch (PathNotFoundException e) {
            // Do nothing just return the empty list later
        } catch (RepositoryException e) {
            throw new SubscriptionException(e);
        }
        return subList;

    }
View Full Code Here

           
            // Copy new properties to the node
            ((JCRSubscription)subscription).merge(node);

        } catch (RepositoryException e) {
            throw new SubscriptionException(e);
        }
    }
View Full Code Here

                    }
                }
               
            });
        } catch (MailboxException e) {
            throw new SubscriptionException(e);
        }
    }
View Full Code Here

                    }
                }

            });
        } catch (MailboxException e) {
            throw new SubscriptionException(e);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.james.mailbox.SubscriptionException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.