1 5 package org.exoplatform.services.portal.log; 6 7 import java.util.Date ; 8 13 public class Query { 14 private String sessionOwner_ ; 15 private String remoteUser_ ; 16 private String ipAddress_ ; 17 private String clientType_ ; 18 private Date fromDate_ ; 19 private Date toDate_ ; 20 private int error_ = 0; 21 22 public String getSessionOwner() { return sessionOwner_ ; } 23 public void setSessionOwner(String s) { sessionOwner_ = s ; } 24 25 public String getRemoteUser() { return remoteUser_ ; } 26 public void setRemoteUser(String s) { remoteUser_ = s ; } 27 28 public String getIPAddress() { return ipAddress_ ;} 29 public void setIPAddress(String s) { ipAddress_ = s ; } 30 31 public String getClientType() { return clientType_ ;} 32 public void setClientType(String s) { clientType_ = s ; } 33 34 public Date getFromDate() { return fromDate_ ; } 35 public void setFromDate(Date d) { fromDate_ = d ; } 36 37 public Date getToDate() { return toDate_ ; } 38 public void setToDate(Date d) { toDate_ = d ; } 39 40 public int getError() { return error_ ; } 41 public void setError(int i) { error_ = i ; } 42 } 43 | Popular Tags |