1 2 12 package com.versant.core.jdo; 13 14 import java.io.Serializable ; 15 16 19 public class RemoteClientStatus implements Serializable { 20 21 private int id; 22 private long timeCreated; 23 private long timeLastActive; 24 private long timeLastPMCreated; 25 private String remoteClient; 26 private Object userObject; 27 28 public RemoteClientStatus() { 29 } 30 31 public void setId(int id) { 32 this.id = id; 33 } 34 35 public void setTimeCreated(long timeCreated) { 36 this.timeCreated = timeCreated; 37 } 38 39 public void setTimeLastActive(long timeLastActive) { 40 this.timeLastActive = timeLastActive; 41 } 42 43 public void setTimeLastPMCreated(long timeLastPMCreated) { 44 this.timeLastPMCreated = timeLastPMCreated; 45 } 46 47 public void setRemoteClient(String remoteClient) { 48 this.remoteClient = remoteClient; 49 } 50 51 public void setUserObject(Object userObject) { 52 this.userObject = userObject; 53 } 54 55 public int getId() { 56 return id; 57 } 58 59 public long getTimeCreated() { 60 return timeCreated; 61 } 62 63 public long getTimeLastPMCreated() { 64 return timeLastPMCreated; 65 } 66 67 public long getTimeLastActive() { 68 return timeLastActive; 69 } 70 71 public String getRemoteClient() { 72 return remoteClient; 73 } 74 75 public Object getUserObject() { 76 return userObject; 77 } 78 79 } 80 | Popular Tags |