Package org.apache.aries.jpa.container.annotation.impl

Examples of org.apache.aries.jpa.container.annotation.impl.AnnotationScanner


  public List<String> getManagedClassNames() {
    List<String> classes = (List<String>) unit.getPersistenceXmlMetadata().get(ParsedPersistenceUnit.MANAGED_CLASSES);
    if(classes == null)
      classes = new ArrayList<String>();
    if(!!!internalExcludeUnlistedClasses()) {
      AnnotationScanner scanner = AnnotationScannerFactory.getAnnotationScanner();
      if(scanner != null)
        classes.addAll(scanner.findJPAAnnotatedClasses(bundle));
    }
   
    return Collections.unmodifiableList(classes);
  }
View Full Code Here

TOP

Related Classes of org.apache.aries.jpa.container.annotation.impl.AnnotationScanner

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.