apps/cookbook-examples/src/main/java/org/apache/commons/chain2/cookbook/mailreader/commands/ProfileCheck.java [32:40]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Processing execute(MailReader mailReader) {
        try {
            mailReader.getLogger().write("ProfileCheck.execute\n");
        } catch (IOException ioe) {
            throw new RuntimeException(ioe);
        }

        return Processing.CONTINUE;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



apps/cookbook-examples/src/main/java/org/apache/commons/chain2/cookbook/mailreader/commands/LogonUser.java [32:40]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Processing execute(MailReader mailReader) {
        try {
            mailReader.getLogger().write("LogonUser.execute");
        } catch (IOException ioe) {
            throw new RuntimeException(ioe);
        }

        return Processing.CONTINUE;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



