Skip to content

Commit

Permalink
Reformatting source code.
Browse files Browse the repository at this point in the history
  • Loading branch information
kvb2univpitt committed Nov 10, 2016
1 parent 26cd298 commit 8f27999
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package edu.pitt.dbmi.ccd.causal.rest.api.dto;

/**
*
*
* Oct 3, 2016 6:16:40 PM
*
*
* @author Chirayu (Kong) Wongchokprasitti, PhD ([email protected])
*
*
*/
public class GfciContinuousNewJob extends NewJob {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
package edu.pitt.dbmi.ccd.causal.rest.api.dto;

import java.util.Date;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
Expand All @@ -42,19 +41,18 @@ public class JobInfoDTO {

@XmlElement
private int status;

@XmlElement
private Date addedTime;

@XmlElement
private String resultFileName;

@XmlElement
private String resultJsonFileName;

@XmlElement
private String errorResultFileName;


public JobInfoDTO() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,27 +30,28 @@
@XmlRootElement(name = "AlgorithmResult")
@XmlAccessorType(XmlAccessType.FIELD)
public class ResultFileDTO {

@XmlElement
private String name;

/*
* We use long type since BasicFileInfo.getCreationTime() returns long
*/
*/
@XmlElement
private long creationTime;

/*
* We use long type since BasicFileInfo.getLastModifiedTime() returns long
*/
*/
@XmlElement
private long lastModifiedTime;

@XmlElement
private long fileSize;

public ResultFileDTO() {
}

public String getName() {
return name;
}
Expand Down

0 comments on commit 8f27999

Please sign in to comment.