89 lines
1.9 KiB
Java
89 lines
1.9 KiB
Java
package it.acxent.banner;
|
|
|
|
import it.acxent.db.ApplParmFull;
|
|
import it.acxent.db.CRAdapter;
|
|
import java.sql.Timestamp;
|
|
|
|
public class BannerStatsCR extends CRAdapter {
|
|
private static final long serialVersionUID = 4917678275987240356L;
|
|
|
|
private long id_bannerStats;
|
|
|
|
private long id_banner;
|
|
|
|
private String entryPoint;
|
|
|
|
private String ipAddress;
|
|
|
|
private Timestamp dataTimestamp;
|
|
|
|
private long flgI_CT;
|
|
|
|
private Banner banner;
|
|
|
|
public BannerStatsCR(ApplParmFull newApplParmFull) {
|
|
super(newApplParmFull);
|
|
}
|
|
|
|
public BannerStatsCR() {}
|
|
|
|
public void setId_bannerStats(long newId_bannerStats) {
|
|
this.id_bannerStats = newId_bannerStats;
|
|
}
|
|
|
|
public void setId_banner(long newId_banner) {
|
|
this.id_banner = newId_banner;
|
|
setBanner(null);
|
|
}
|
|
|
|
public void setEntryPoint(String newEntryPoint) {
|
|
this.entryPoint = newEntryPoint;
|
|
}
|
|
|
|
public void setIpAddress(String newIpAddress) {
|
|
this.ipAddress = newIpAddress;
|
|
}
|
|
|
|
public void setDataTimestamp(Timestamp newDataTimestamp) {
|
|
this.dataTimestamp = newDataTimestamp;
|
|
}
|
|
|
|
public void setFlgI_CT(long newFlgI_CT) {
|
|
this.flgI_CT = newFlgI_CT;
|
|
}
|
|
|
|
public long getId_bannerStats() {
|
|
return this.id_bannerStats;
|
|
}
|
|
|
|
public long getId_banner() {
|
|
return this.id_banner;
|
|
}
|
|
|
|
public String getEntryPoint() {
|
|
return (this.entryPoint == null) ? "" : this.entryPoint.trim();
|
|
}
|
|
|
|
public String getIpAddress() {
|
|
return (this.ipAddress == null) ? "" : this.ipAddress.trim();
|
|
}
|
|
|
|
public Timestamp getDataTimestamp() {
|
|
return this.dataTimestamp;
|
|
}
|
|
|
|
public long getFlgI_CT() {
|
|
return this.flgI_CT;
|
|
}
|
|
|
|
public void setBanner(Banner newBanner) {
|
|
this.banner = newBanner;
|
|
}
|
|
|
|
public Banner getBanner() {
|
|
this.banner = (Banner)getSecondaryObject(this.banner, Banner.class,
|
|
|
|
getId_banner());
|
|
return this.banner;
|
|
}
|
|
}
|