Package com.eaglegenomics.simlims.core

Examples of com.eaglegenomics.simlims.core.SecurityProfile


  /**
   * Construct a new emPCRDilution with a default empty SecurityProfile
   */
  public emPCRDilution() {
    setSecurityProfile(new SecurityProfile());
  }
View Full Code Here


   * Construct a new emPCRDilution with a SecurityProfile owned by the given User
   *
   * @param user of type User
   */
  public emPCRDilution(User user) {
    setSecurityProfile(new SecurityProfile(user));
  }
View Full Code Here

public class emPCRPool extends PoolImpl<LibraryDilution> implements Serializable {
  public static final String PREFIX = "EPO";
  private final String units = "nM";

  public emPCRPool(PlatformType platformType) {
    setSecurityProfile(new SecurityProfile());
    setPlatformType(platformType);
  }
View Full Code Here

    setSecurityProfile(new SecurityProfile());
    setPlatformType(platformType);
  }

  public emPCRPool(User user, PlatformType platformType) {
    setSecurityProfile(new SecurityProfile(user));
    setPlatformType(platformType);
  }
View Full Code Here

  private String units = "";
  private PlatformType platformType;

  public PoolImpl() {
    setSecurityProfile(new SecurityProfile());
  }
View Full Code Here

  public PoolImpl() {
    setSecurityProfile(new SecurityProfile());
  }

  public PoolImpl(User user) {
    setSecurityProfile(new SecurityProfile(user));
  }
View Full Code Here

public class PlatePool extends PoolImpl<Plate<LinkedList<Library>, Library>> implements Serializable {
  public static final String PREFIX = "UPO";
  private final String units = "nM";

  public PlatePool() {
    setSecurityProfile(new SecurityProfile());
  }
View Full Code Here

  public PlatePool() {
    setSecurityProfile(new SecurityProfile());
  }

  public PlatePool(PlatformType platformType) {
    setSecurityProfile(new SecurityProfile());
    setPlatformType(platformType);
  }
View Full Code Here

    setSecurityProfile(new SecurityProfile());
    setPlatformType(platformType);
  }

  public PlatePool(User user, PlatformType platformType) {
    setSecurityProfile(new SecurityProfile(user));
    setPlatformType(platformType);
  }
View Full Code Here

  /**
   * Construct a new Submission with a default empty SecurityProfile
   */
  public SubmissionImpl() {
    setSecurityProfile(new SecurityProfile());
  }
View Full Code Here

TOP

Related Classes of com.eaglegenomics.simlims.core.SecurityProfile

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.