Package org.jboss.deployers.spi.structure

Examples of org.jboss.deployers.spi.structure.MetaDataEntry


   public boolean equals(Object obj)
   {
      if (obj instanceof MetaDataEntry == false)
         return false;

      MetaDataEntry other = (MetaDataEntry)obj;
      if (path.equals(other.getPath()) == false)
         return false;

      return type == other.getType();
   }
View Full Code Here


   public boolean equals(Object obj)
   {
      if (obj instanceof MetaDataEntry == false)
         return false;

      MetaDataEntry other = (MetaDataEntry)obj;
      if (path.equals(other.getPath()) == false)
         return false;

      return type == other.getType();
   }
View Full Code Here

      Object child = null;
      if("path".equals(localName))
      {
         String path = attrs.getValue("name");
         String type = attrs.getValue("type");
         MetaDataEntry entry = new MetaDataEntryImpl(path, MetaDataType.getMetaDataType(type));
         parent.add(entry);
      }
      return child;
   }
View Full Code Here

    * @throws IllegalArgumentException for a null parameter
    */
   public ContextInfo addContext(PredeterminedManagedObjectAttachments context, String path, String metaDataPath, List<ClassPathEntry> classPath)
   {
      StructureMetaData structure = assureStructure(context);
      MetaDataEntry entry = createMetaDataPathEntry(metaDataPath);
      ContextInfo result = StructureMetaDataFactory.createContextInfo(path, entry, classPath);
      structure.addContext(result);
      return result;
   }
View Full Code Here

      Object child = null;
      if("path".equals(localName))
      {
         String path = attrs.getValue("name");
         String type = attrs.getValue("type");
         MetaDataEntry entry = new MetaDataEntryImpl(path, MetaDataType.getMetaDataType(type));
         parent.add(entry);
      }
      return child;
   }
View Full Code Here

TOP

Related Classes of org.jboss.deployers.spi.structure.MetaDataEntry

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.