1 19 20 package org.apache.james.mailboxmanager.torque; 21 22 import org.apache.james.mailboxmanager.TestUtil; 23 import org.apache.james.mailboxmanager.torque.om.MailboxRowPeer; 24 import org.apache.torque.TorqueException; 25 import org.apache.torque.util.Criteria; 26 27 public class TorqueTestUtil extends TestUtil { 28 29 30 31 public static void clearTables() throws TorqueException { 32 MailboxRowPeer.doDelete(new Criteria().and(MailboxRowPeer.MAILBOX_ID, 41 new Integer (-1), Criteria.GREATER_THAN)); 42 } 43 44 } 45 | Popular Tags |