Package com.eaglegenomics.simlims.core

Examples of com.eaglegenomics.simlims.core.SecurityProfile


public class IlluminaPool extends PoolImpl<LibraryDilution> {
  public static final String PREFIX = "IPO";
  private final String units = "nM";

  public IlluminaPool() {
    setSecurityProfile(new SecurityProfile());
    setPlatformType(PlatformType.ILLUMINA);
  }
View Full Code Here


    setSecurityProfile(new SecurityProfile());
    setPlatformType(PlatformType.ILLUMINA);
  }

  public IlluminaPool(User user) {
    setSecurityProfile(new SecurityProfile(user));
    setPlatformType(PlatformType.ILLUMINA);
  }
View Full Code Here

public class ProjectImpl extends AbstractProject implements Serializable {
  /**
   * Construct a new Project with a default empty SecurityProfile
   */
  public ProjectImpl() {
    setSecurityProfile(new SecurityProfile());
  }
View Full Code Here

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

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

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

  public RunImpl(Experiment experiment, User user) {
    if (experiment.userCanRead(user)) {
      setSecurityProfile(experiment.getSecurityProfile());
    }
    else {
      setSecurityProfile(new SecurityProfile(user));
    }
  }
View Full Code Here

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

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

      //creates a Study object and sets parameters
      Study s = dataObjectFactory.getStudy();
      s.setProject(p);
      s.setAlias("Submission Test Study");
      s.setDescription("A test of the Submission XML generation process");
      s.setSecurityProfile(new SecurityProfile());

      Document submissionDocument = null;
      try {
          DocumentBuilder docBuilder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
          submissionDocument = docBuilder.newDocument();
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.