Codota Logo
SqlAction.findRepoFile
Code IndexAdd Codota to your IDE (free)

How to use
findRepoFile
method
in
ome.util.SqlAction

Best Java code snippets using ome.util.SqlAction.findRepoFile (Showing top 5 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
ArrayList a =
  • Codota Iconnew ArrayList<String>()
  • Codota Iconnew ArrayList()
  • Codota Iconnew ArrayList<Object>()
  • Smart code suggestions by Codota
}
origin: omero/server

/**
 * Looks to see if a path is contained in the repository.
 */
public Long findInDb(SqlAction sql, RepoFile repoFile, boolean scriptsOnly) {
  return sql.findRepoFile(uuid, repoFile.dirname(), repoFile.basename(),
      scriptsOnly ? mimetypes : null);
}
origin: omero/blitz

id = sql.findRepoFile(repoUuid,
    checked.getRelativePath(), checked.getName());
origin: omero/blitz

public ome.model.core.OriginalFile findRepoFile(ServiceFactory sf,
    SqlAction sql, final String uuid, final CheckedPath checked,
    final String mimetype) {
  Long id = sql.findRepoFile(uuid,
      checked.getRelativePath(), checked.getName(),
      mimetype);
  if (id == null) {
    return null;
  } else {
    return sf.getQueryService().get(
        ome.model.core.OriginalFile.class, id);
  }
}
origin: omero/blitz

Long id = sql.findRepoFile(repoUuid, checked.getRelativePath(),
    checked.getName());
sw.stop("omero.repo.file.find");
origin: omero/blitz

final Long parentId = sql.findRepoFile(repoUuid,
    parent.getRelativePath(), parent.getName());
ome.utilSqlActionfindRepoFile

Popular methods of SqlAction

  • nextValue
  • setFileRepo
  • activeSession
  • addMessageWithinDbPatchEnd
  • addMessageWithinDbPatchStart
  • changeGroupPermissions
  • clearPermissionsBit
  • closeNode
  • closeNodeSessions
  • closeSessions
  • configValue
  • dbUuid
  • configValue,
  • dbUuid,
  • dbVersion,
  • deferConstraints,
  • delCurrentEventLog,
  • deleteCurrentAdminPrivileges,
  • deleteOldAdminPrivileges,
  • deleteRepoDeleteLogs,
  • fileIdsInDb

Popular in Java

  • Running tasks concurrently on multiple threads
  • getContentResolver (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getSupportFragmentManager (FragmentActivity)
    Return the FragmentManager for interacting with fragments associated with this activity.
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Iterator (java.util)
    An iterator over a collection. Iterator takes the place of Enumeration in the Java Collections Frame
  • TimerTask (java.util)
    A task that can be scheduled for one-time or repeated execution by a Timer.
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now