1 5 package org.exoplatform.services.portal.log.impl; 6 7 import java.util.Date ; 8 import org.exoplatform.services.portal.log.SessionLogDataDescription; 9 15 public class SessionLogDataDescriptionImpl implements SessionLogDataDescription { 16 private String id ; 17 private String sessionOwner ; 18 private String remoteUser ; 19 private String clientName ; 20 private String ipAddress ; 21 private Date accessTime ; 22 private int duration ; 23 private int errorCount; 24 private int actionCount ; 25 26 29 public String getId() { return id; } 30 public void setId(String s) { id = s ; } 31 32 35 public String getSessionOwner() {return sessionOwner ;} 36 public void setSessionOwner(String s) { sessionOwner = s ;} 37 38 41 public String getRemoteUser() { return remoteUser ; } 42 public void setRemoteUser(String user) { remoteUser = user; } 43 44 47 public String getClientName() { return clientName ; } 48 public void setClientName(String client) { clientName = client ; } 49 50 53 public String getIPAddress() { return ipAddress ; } 54 public void setIPAddress(String ip) { ipAddress = ip ; } 55 56 59 public Date getAccessTime() { return accessTime ; } 60 public void setAccessTime(Date date) { accessTime = date ; } 61 62 65 public int getDuration() { return duration ; } 66 public void setDuration(int time) { duration = time ; } 67 68 71 public int getErrorCount() { return errorCount ; } 72 public void setErrorCount(int number) { errorCount = number ; } 73 74 77 public int getActionCount() { return actionCount ; } 78 public void setActionCount(int number) { actionCount = number ; } 79 } | Popular Tags |