Tabnine Logo
UserSessionDownload.getOrganismCache
Code IndexAdd Tabnine to your IDE (free)

How to use
getOrganismCache
method
in
uk.ac.ebi.intact.application.dataConversion.psiDownload.UserSessionDownload

Best Java code snippets using uk.ac.ebi.intact.application.dataConversion.psiDownload.UserSessionDownload.getOrganismCache (Showing top 18 results out of 315)

origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

/**
 * Store in the cache the XML representation related to the given BioSource instance.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we wanted to comvert to XML.
 * @param element   The DOM root (as an Element) of the XML representation of the given BioSource.
 */
private static void updateOrganismCache( UserSessionDownload session, BioSource bioSource, Element element ) {
  Map cache = session.getOrganismCache();
  BioSource2xmlCommons.getInstance().updateCache( cache, bioSource, element );
}
origin: uk.ac.ebi.intact.app/data-conversion

/**
 * Store in the cache the XML representation related to the given BioSource instance.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we wanted to comvert to XML.
 * @param element   The DOM root (as an Element) of the XML representation of the given BioSource.
 */
private static void updateOrganismCache( UserSessionDownload session, BioSource bioSource, Element element ) {
  Map cache = session.getOrganismCache();
  BioSource2xmlCommons.getInstance().updateCache( cache, bioSource, element );
}
origin: uk.ac.ebi.intact.app/data-conversion

/**
 * Store in the cache the XML representation related to the given BioSource instance.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we wanted to comvert to XML.
 * @param element   The DOM root (as an Element) of the XML representation of the given BioSource.
 */
private static void updateOrganismCache( UserSessionDownload session, BioSource bioSource, Element element ) {
  Map cache = session.getOrganismCache();
  BioSource2xmlCommons.getInstance().updateCache( cache, bioSource, element );
}
origin: uk.ac.ebi.intact.util/data-conversion

/**
 * Store in the cache the XML representation related to the given BioSource instance.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we wanted to comvert to XML.
 * @param element   The DOM root (as an Element) of the XML representation of the given BioSource.
 */
private static void updateOrganismCache( UserSessionDownload session, BioSource bioSource, Element element ) {
  Map cache = session.getOrganismCache();
  BioSource2xmlCommons.getInstance().updateCache( cache, bioSource, element );
}
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

/**
 * Store in the cache the XML representation related to the given BioSource instance.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we wanted to comvert to XML.
 * @param element   The DOM root (as an Element) of the XML representation of the given BioSource.
 */
private static void updateOrganismCache( UserSessionDownload session, BioSource bioSource, Element element ) {
  Map cache = session.getOrganismCache();
  BioSource2xmlCommons.getInstance().updateCache( cache, bioSource, element );
}
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

/**
 * Store in the cache the XML representation related to the given BioSource instance.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we wanted to comvert to XML.
 * @param element   The DOM root (as an Element) of the XML representation of the given BioSource.
 */
private static void updateOrganismCache( UserSessionDownload session, BioSource bioSource, Element element ) {
  Map cache = session.getOrganismCache();
  BioSource2xmlCommons.getInstance().updateCache( cache, bioSource, element );
}
origin: uk.ac.ebi.intact.app/data-conversion

/**
 * Store in the cache the XML representation related to the given BioSource instance.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we wanted to comvert to XML.
 * @param element   The DOM root (as an Element) of the XML representation of the given BioSource.
 */
private static void updateOrganismCache( UserSessionDownload session, BioSource bioSource, Element element ) {
  Map cache = session.getOrganismCache();
  BioSource2xmlCommons.getInstance().updateCache( cache, bioSource, element );
}
origin: uk.ac.ebi.intact.util/data-conversion

/**
 * Store in the cache the XML representation related to the given BioSource instance.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we wanted to comvert to XML.
 * @param element   The DOM root (as an Element) of the XML representation of the given BioSource.
 */
private static void updateOrganismCache( UserSessionDownload session, BioSource bioSource, Element element ) {
  Map cache = session.getOrganismCache();
  BioSource2xmlCommons.getInstance().updateCache( cache, bioSource, element );
}
origin: uk.ac.ebi.intact.util/data-conversion

/**
 * Store in the cache the XML representation related to the given BioSource instance.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we wanted to comvert to XML.
 * @param element   The DOM root (as an Element) of the XML representation of the given BioSource.
 */
private static void updateOrganismCache( UserSessionDownload session, BioSource bioSource, Element element ) {
  Map cache = session.getOrganismCache();
  BioSource2xmlCommons.getInstance().updateCache( cache, bioSource, element );
}
origin: uk.ac.ebi.intact.util/data-conversion

/**
 * Checks if the given BioSource has already been generated as XML content. <br> If so, that content is cloned which
 * is faster than recreating it.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we want to check.
 *
 * @return the XML representation (as the root of a DOM tree) of the given BioSource, or null if it hasn't been
 *         generated  yet.
 */
private static Element getOrganismFromCache( UserSessionDownload session, BioSource bioSource ) {
  Map cache = session.getOrganismCache();
  return BioSource2xmlCommons.getInstance().getXmlFromCache( cache, bioSource );
}
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

/**
 * Checks if the given BioSource has already been generated as XML content. <br> If so, that content is cloned which
 * is faster than recreating it.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we want to check.
 *
 * @return the XML representation (as the root of a DOM tree) of the given BioSource, or null if it hasn't been
 *         generated  yet.
 */
private static Element getOrganismFromCache( UserSessionDownload session, BioSource bioSource ) {
  Map cache = session.getOrganismCache();
  return BioSource2xmlCommons.getInstance().getXmlFromCache( cache, bioSource );
}
origin: uk.ac.ebi.intact.app/data-conversion

/**
 * Checks if the given BioSource has already been generated as XML content. <br> If so, that content is cloned which
 * is faster than recreating it.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we want to check.
 *
 * @return the XML representation (as the root of a DOM tree) of the given BioSource, or null if it hasn't been
 *         generated  yet.
 */
private static Element getOrganismFromCache( UserSessionDownload session, BioSource bioSource ) {
  Map cache = session.getOrganismCache();
  return BioSource2xmlCommons.getInstance().getXmlFromCache( cache, bioSource );
}
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

/**
 * Checks if the given BioSource has already been generated as XML content. <br> If so, that content is cloned which
 * is faster than recreating it.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we want to check.
 *
 * @return the XML representation (as the root of a DOM tree) of the given BioSource, or null if it hasn't been
 *         generated  yet.
 */
private static Element getOrganismFromCache( UserSessionDownload session, BioSource bioSource ) {
  Map cache = session.getOrganismCache();
  return BioSource2xmlCommons.getInstance().getXmlFromCache( cache, bioSource );
}
origin: uk.ac.ebi.intact.util/data-conversion

/**
 * Checks if the given BioSource has already been generated as XML content. <br> If so, that content is cloned which
 * is faster than recreating it.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we want to check.
 *
 * @return the XML representation (as the root of a DOM tree) of the given BioSource, or null if it hasn't been
 *         generated  yet.
 */
private static Element getOrganismFromCache( UserSessionDownload session, BioSource bioSource ) {
  Map cache = session.getOrganismCache();
  return BioSource2xmlCommons.getInstance().getXmlFromCache( cache, bioSource );
}
origin: uk.ac.ebi.intact.app/data-conversion

/**
 * Checks if the given BioSource has already been generated as XML content. <br> If so, that content is cloned which
 * is faster than recreating it.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we want to check.
 *
 * @return the XML representation (as the root of a DOM tree) of the given BioSource, or null if it hasn't been
 *         generated  yet.
 */
private static Element getOrganismFromCache( UserSessionDownload session, BioSource bioSource ) {
  Map cache = session.getOrganismCache();
  return BioSource2xmlCommons.getInstance().getXmlFromCache( cache, bioSource );
}
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

/**
 * Checks if the given BioSource has already been generated as XML content. <br> If so, that content is cloned which
 * is faster than recreating it.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we want to check.
 *
 * @return the XML representation (as the root of a DOM tree) of the given BioSource, or null if it hasn't been
 *         generated  yet.
 */
private static Element getOrganismFromCache( UserSessionDownload session, BioSource bioSource ) {
  Map cache = session.getOrganismCache();
  return BioSource2xmlCommons.getInstance().getXmlFromCache( cache, bioSource );
}
origin: uk.ac.ebi.intact.app/data-conversion

/**
 * Checks if the given BioSource has already been generated as XML content. <br> If so, that content is cloned which
 * is faster than recreating it.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we want to check.
 *
 * @return the XML representation (as the root of a DOM tree) of the given BioSource, or null if it hasn't been
 *         generated  yet.
 */
private static Element getOrganismFromCache( UserSessionDownload session, BioSource bioSource ) {
  Map cache = session.getOrganismCache();
  return BioSource2xmlCommons.getInstance().getXmlFromCache( cache, bioSource );
}
origin: uk.ac.ebi.intact.util/data-conversion

/**
 * Checks if the given BioSource has already been generated as XML content. <br> If so, that content is cloned which
 * is faster than recreating it.
 *
 * @param session   the user session in which the cache is stored.
 * @param bioSource the bioSource we want to check.
 *
 * @return the XML representation (as the root of a DOM tree) of the given BioSource, or null if it hasn't been
 *         generated  yet.
 */
private static Element getOrganismFromCache( UserSessionDownload session, BioSource bioSource ) {
  Map cache = session.getOrganismCache();
  return BioSource2xmlCommons.getInstance().getXmlFromCache( cache, bioSource );
}
uk.ac.ebi.intact.application.dataConversion.psiDownloadUserSessionDownloadgetOrganismCache

Popular methods of UserSessionDownload

  • <init>
  • addMessage
  • createElement
  • createTextNode
  • declareAlreadyDefined
    Declare in the session that the given protein has been already converted in XML.
  • filterObsoleteAnnotationTopic
    Load all CvTopic and check which one have been flagged 'obsolete'. Those CvTopic are automatically a
  • getAvailabilityListElement
    Return the availabilityList element under the entry of the PSI document. If the element doesn't exis
  • getCvObjectCache
  • getEntryElement
    Return the entry element of the PSI document. If the element doesn't exist, it is created.
  • getExperimentIdentifier
    Get a specific identifier for the given experiemnt. If an identifier had already been affected for t
  • getExperimentListElement
    Return the experimentList element under the entry of the PSI document. If the element doesn't exist,
  • getFeatureIdentifier
    Get a specific identifier for the given feature. If an identifier had already been affected for that
  • getExperimentListElement,
  • getFeatureIdentifier,
  • getHostOrganismCache,
  • getInteractionIdentifier,
  • getInteractionListElement,
  • getInteractorIdentifier,
  • getInteractorListElement,
  • getMessages,
  • getNextClusterIdSuffix,
  • getNextObjectIdentifier

Popular in Java

  • Running tasks concurrently on multiple threads
  • scheduleAtFixedRate (Timer)
  • getSupportFragmentManager (FragmentActivity)
  • getApplicationContext (Context)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • From CI to AI: The AI layer in your organization
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