*/
public static void setupBasicDestinations() throws Exception
{
JMSTestAdmin admin = JMSTestAdmin.getAdmin();
admin.createTopic("securedTopic", new TestRole[]{
new TestRole("publisher", true, true, false)});
admin.createTopic("testTopic", new TestRole[]{
new TestRole("guest", true, true, true),
new TestRole("publisher", true, true, true),
new TestRole("durpublisher", true, true, true)});
admin.createTopic("testDurableTopic", new TestRole[]{
new TestRole("guest", true, true, true),
new TestRole("publisher", true, true, true),
new TestRole("durpublisher", true, true, true)});
admin.createQueue("testQueue", new TestRole[]{
new TestRole("guest", true, true, true),
new TestRole("publisher", true, true, true),
new TestRole("durpublisher", true, true, true)});
admin.createQueue("A", new TestRole("guest", true, true, true));
admin.createQueue("B", new TestRole("guest", true, true, true));
admin.createQueue("C", new TestRole("guest", true, true, true));
admin.createQueue("D", new TestRole("guest", true, true, true));
admin.createQueue("ex", new TestRole("guest", true, true, true));
}