Package org.jboss.deployers.plugins.attachments

Examples of org.jboss.deployers.plugins.attachments.AttachmentsImpl


   public void testPredeterminedManagedObjectAttachments()
   {
      ContextInfoImpl context = createDefault();
      assertEquals("", context.getPath());
      AttachmentsImpl ai = new AttachmentsImpl();
      ai.addAttachment("key1", "testPredeterminedManagedObjectAttachments");
      context.setPredeterminedManagedObjects(ai);
      String a1 = context.getPredeterminedManagedObjects().getAttachment("key1", String.class);
      assertEquals("key1 attachment", "testPredeterminedManagedObjectAttachments", a1);
   }
View Full Code Here

TOP

Related Classes of org.jboss.deployers.plugins.attachments.AttachmentsImpl

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.