Added comments .Removed changes not required.

Signed-off-by: Asharani <asharani.murugesh@in.bosch.com>
This commit is contained in:
Asharani
2016-05-17 12:48:47 +05:30
parent 87da60b950
commit 0073fdeb40
3 changed files with 9 additions and 8 deletions

View File

@@ -254,10 +254,5 @@
<artifactId>allure-junit-adaptor</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>2.10.4</version>
</dependency>
</dependencies>
</project>

View File

@@ -12,7 +12,7 @@ import java.io.Serializable;
/**
*
* Holds file and upload status details.
* Holds file and upload status details.Meta data sent with upload events.
*
*/
public class UploadFileStatus implements Serializable {
@@ -27,10 +27,10 @@ public class UploadFileStatus implements Serializable {
private String failureReason;
public UploadFileStatus(String fileName){
public UploadFileStatus(String fileName) {
this.fileName = fileName;
}
public UploadFileStatus(String fileName, long bytesRead, long contentLength) {
this.fileName = fileName;
this.contentLength = contentLength;

View File

@@ -8,6 +8,12 @@
*/
package org.eclipse.hawkbit.ui.artifacts.upload;
/**
*
* Holds uploaded file status.Used to display the details in upload status
* popup.
*
*/
public class UploadStatusObject {
private String status;
private Double progress;