Uses of Class
uk.ac.ebi.intenz.domain.constants.Status

Packages that use Status
uk.ac.ebi.intenz.domain.constants The most commonly used constants are implemented as typesafe enums. 
uk.ac.ebi.intenz.domain.enzyme The core enzyme information is held in these classes. 
uk.ac.ebi.intenz.domain.history The classification classes will be used to represent the EC hierarchy and the enzyme history. 
uk.ac.ebi.intenz.mapper O/R mapping layer classes. 
uk.ac.ebi.intenz.webapp.controller All front controller related classes are stored here. 
 

Uses of Status in uk.ac.ebi.intenz.domain.constants
 

Methods in uk.ac.ebi.intenz.domain.constants that return Status
static Status Status.fromCode(String code)
           
static Status Status.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Status[] Status.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of Status in uk.ac.ebi.intenz.domain.enzyme
 

Methods in uk.ac.ebi.intenz.domain.enzyme that return Status
 Status EnzymeEntry.getStatus()
           
 

Methods in uk.ac.ebi.intenz.domain.enzyme with parameters of type Status
 void EnzymeEntry.setStatus(Status status)
          Sets the enzyme's status.
 

Uses of Status in uk.ac.ebi.intenz.domain.history
 

Methods in uk.ac.ebi.intenz.domain.history that return Status
 Status FutureEvent.getStatus()
           
 

Methods in uk.ac.ebi.intenz.domain.history with parameters of type Status
 void FutureEvent.setStatus(Status status)
           
 

Uses of Status in uk.ac.ebi.intenz.mapper
 

Methods in uk.ac.ebi.intenz.mapper with parameters of type Status
 EnzymeEntry EnzymeEntryMapper.findByEc(int ec1, int ec2, int ec3, int ec4, Status status, Connection con)
          Tries to find entry information about an enzyme.
 EnzymeEntry EnzymeEntryMapper.findByEc(String ecString, Status status, Connection con)
          Finds an enzyme by EC number (as String) and status.
 List<EnzymeEntry> EnzymeEntryMapper.findByStatus(Connection con, Status status)
          Retrieves the list of enzymes with a given status.
 Long EnzymeEntryMapper.findIDInMappingTable(String ec, Status status, Connection con)
           
 void EnzymeCofactorMapper.insert(Collection<Object> cofactors, Long enzymeId, Status status, Connection con)
          Stores the given list of cofactors into the database.
 void EnzymeNameMapper.insert(EnzymeName enzymeName, Long enzymeId, Status status, int orderIn, Connection con)
           
 void EnzymeCommentMapper.insert(List<EnzymeComment> comments, Long enzymeId, Status status, Connection con)
          Stores the given comment into the database.
 void EnzymeLinkMapper.insert(List<EnzymeLink> links, Long enzymeId, Status status, Connection con)
          Stores the given list of links into the database.
 void EnzymeReferenceMapper.insert(List<Reference> references, Long enzymeId, Status status, Connection con)
          Stores the given list of references into the database.
 void EnzymeEntryMapper.insert(Long enzymeId, EnzymeCommissionNumber ec, Status status, EnzymeSourceConstant source, String note, String historyLine, boolean isActive, Connection con)
          Inserts the core data of a new enzyme entry.
 void EnzymeReferenceMapper.insert(Reference reference, Long enzymeId, Status status, Connection con)
           
 void EnzymeLinkMapper.insertLink(EnzymeLink link, Long enzymeId, Status status, Connection con)
           
 void EnzymeNameMapper.insertNames(List<EnzymeName> names, Long enzymeId, Status status, Connection con)
           
 void EnzymeCofactorMapper.reload(Collection<Object> cofactors, Long enzymeId, Status status, Connection con)
          Reloads the given list of cofactors into the database.
 void EnzymeCommentMapper.reload(List<EnzymeComment> comments, Long enzymeId, Status status, Connection con)
           
 void EnzymeNameMapper.reload(List<EnzymeName> names, Long enzymeId, EnzymeNameTypeConstant type, Status status, Connection con)
           
 void EnzymeReferenceMapper.reload(List<Reference> references, Long enzymeId, Status status, Connection con)
           
 void EnzymeLinkMapper.reloadLinks(List<EnzymeLink> links, Long enzymeId, Status status, Connection con)
           
 void EnzymeCommentMapper.update(EnzymeComment comment, Long enzymeId, Status status, int orderIn, Connection con)
           
 void EnzymeNameMapper.update(EnzymeName name, Long enzymeId, Status status, int orderIn, Connection con)
           
 void EnzymeReferenceMapper.update(List<Reference> references, Long enzymeId, Status status, Connection con)
           
 void EnzymeEntryMapper.update(Long enzymeId, EnzymeCommissionNumber ec, Status status, EnzymeSourceConstant source, String note, String historyLine, boolean active, Connection con)
          Updates the core data of an enzyme stored in the table ENZYMES.
 void EnzymeReferenceMapper.update(Reference reference, Long enzymeId, Status status, Connection con)
           
 void EnzymeLinkMapper.updateLinkUrl(EnzymeLink link, Long enzymeId, Status status, Connection con)
           
 void EnzymeEntryMapper.updateStatus(Long enzymeId, Status status, Connection con)
          Updates the status of the given enzyme.
 

Uses of Status in uk.ac.ebi.intenz.webapp.controller
 

Methods in uk.ac.ebi.intenz.webapp.controller with parameters of type Status
protected  EnzymeEntry SearchECCommand.findEnzymeEntry(EnzymeCommissionNumber ec, Status status)
          Calls the according find() method and handles empty results and SQL exceptions.
 

Constructors in uk.ac.ebi.intenz.webapp.controller with parameters of type Status
SearchECCommand.EnzymeEntryCacheKey(EnzymeCommissionNumber ec, Status status)
           
 



Copyright © 2013 EMBL-EBI. All Rights Reserved.