1 21 package com.jaspersoft.jasperserver.api.engine.scheduling.domain; 22 23 import java.io.Serializable ; 24 25 29 public class ReportJobSummary implements Serializable { 30 31 private static final long serialVersionUID = 1L; 32 33 private long id; 34 private int version; 35 private String username; 36 private String label; 37 38 private ReportJobRuntimeInformation runtimeInformation; 39 40 public ReportJobSummary() { 41 } 42 43 public long getId() { 44 return id; 45 } 46 47 public void setId(long id) { 48 this.id = id; 49 } 50 51 public String getLabel() { 52 return label; 53 } 54 55 public void setLabel(String label) { 56 this.label = label; 57 } 58 59 public int getVersion() { 60 return version; 61 } 62 63 public void setVersion(int version) { 64 this.version = version; 65 } 66 67 public ReportJobRuntimeInformation getRuntimeInformation() { 68 return runtimeInformation; 69 } 70 71 public void setRuntimeInformation(ReportJobRuntimeInformation runtimeInformation) { 72 this.runtimeInformation = runtimeInformation; 73 } 74 75 public String getUsername() { 76 return username; 77 } 78 79 public void setUsername(String username) { 80 this.username = username; 81 } 82 83 } 84 | Popular Tags |