Package uk.ac.bbsrc.tgac.miso.core.data

Examples of uk.ac.bbsrc.tgac.miso.core.data.SequencerPoolPartition


        if ((element = lookupCache(cacheManager).get(DbUtils.hashCodeCacheKeyFor(id))) != null) {
          log.debug("Cache hit on map for SequencerPoolPartition " + id);
          return (SequencerPoolPartition)element.getObjectValue();
        }
      }
      SequencerPoolPartition l = dataObjectFactory.getSequencerPoolPartition();
      l.setId(id);
      l.setPartitionNumber(rs.getInt("partitionNumber"));
      try {
        l.setSecurityProfile(securityProfileDAO.get(rs.getLong("securityProfile_profileId")));
        l.setPool(poolDAO.get(rs.getLong("pool_poolId")));
        if (!isLazy()) {
          l.setSequencerPartitionContainer(sequencerPartitionContainerDAO.getSequencerPartitionContainerByPartitionId(id));
        }
      }
      catch (IOException e1) {
        e1.printStackTrace();
      }
View Full Code Here

TOP

Related Classes of uk.ac.bbsrc.tgac.miso.core.data.SequencerPoolPartition

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.