Package com.eaglegenomics.simlims.core

Examples of com.eaglegenomics.simlims.core.SecurityProfile


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


  }

  public LS454Run(User user) {
    setPlatformType(PlatformType.LS454);
    setStatus(new StatusImpl());
    setSecurityProfile(new SecurityProfile(user));
  }
View Full Code Here

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

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

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

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

public class IlluminaRun extends RunImpl {

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

        setFilePath(runName);
        setDescription(m.group(3));
        setPlatformType(PlatformType.ILLUMINA);
        setStatus(new IlluminaStatus(statusXml));
        if (user != null) {
          setSecurityProfile(new SecurityProfile(user));
        }
        else {
          setSecurityProfile(new SecurityProfile());
        }
      }
      else {
        log.error("No status XML for this run");
      }
View Full Code Here

  }

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

        JSONArray a = JSONArray.fromObject(json.get("libraries"));
        Set<Library> saveSet = new HashSet<Library>();

        for (JSONObject j : (Iterable<JSONObject>) a) {
          try {
            SecurityProfile sp = null;
            Sample sample = null;
            //String libAlias = null;
            String sampleAlias = j.getString("parentSample");

            for (Sample s : p.getSamples()) {
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.