congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
HibernateConfigurationFileService.findAll
Code IndexAdd Tabnine to your IDE (free)

How to use
findAll
method
in
org.jboss.windup.rules.apps.javaee.service.HibernateConfigurationFileService

Best Java code snippets using org.jboss.windup.rules.apps.javaee.service.HibernateConfigurationFileService.findAll (Showing top 3 results out of 315)

origin: org.jboss.windup.rules.apps/windup-rules-java-ee

  /**
   * Gets an {@link Iterable} of {@link HibernateConfigurationFileModel}s for the given {@link ProjectModel}.
   */
  public Iterable<HibernateConfigurationFileModel> findAllByApplication(final ProjectModel application)
  {
    List<HibernateConfigurationFileModel> results = new ArrayList<>();

    for (HibernateConfigurationFileModel model : findAll())
    {
      Set<ProjectModel> modelApplications = ProjectTraversalCache.getApplicationsForProject(getGraphContext(), model.getProjectModel());
      if (modelApplications.contains(application))
        results.add(model);
    }
    return results;
  }
}
origin: windup/windup

  /**
   * Gets an {@link Iterable} of {@link HibernateConfigurationFileModel}s for the given {@link ProjectModel}.
   */
  public Iterable<HibernateConfigurationFileModel> findAllByApplication(final ProjectModel application)
  {
    List<HibernateConfigurationFileModel> results = new ArrayList<>();

    for (HibernateConfigurationFileModel model : findAll())
    {
      Set<ProjectModel> modelApplications = ProjectTraversalCache.getApplicationsForProject(getGraphContext(), model.getProjectModel());
      if (modelApplications.contains(application))
        results.add(model);
    }
    return results;
  }
}
origin: org.jboss.windup.rules.apps/rules-java-ee

for (HibernateConfigurationFileModel hibernateConfig : hibernateConfigurationFileService.findAll())
org.jboss.windup.rules.apps.javaee.serviceHibernateConfigurationFileServicefindAll

Javadoc

Gets an Iterable of HibernateConfigurationFileModels for the given ProjectModel.

Popular methods of HibernateConfigurationFileService

  • <init>
  • addTypeToModel
  • findAllByApplication
    Gets an Iterable of HibernateConfigurationFileModels for the given ProjectModel.
  • getGraphContext

Popular in Java

  • Reactive rest calls using spring rest template
  • setContentView (Activity)
  • runOnUiThread (Activity)
  • onRequestPermissionsResult (Fragment)
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Notification (javax.management)
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now