ClientBranding.java
package com.tradecloud.infrastructure.configuration;
import javax.persistence.*;
import javax.xml.bind.annotation.XmlAttribute;
import java.io.Serializable;
@Entity
@Table(name = "clientbranding")
public class ClientBranding implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@XmlAttribute
private Long id;
private String icon;
private String logo;
private String logoRight;
private String name;
private String clientCode;
private String styleSheet;
private String pStyleSheet;
private String reportLeftLogo;
private String reportRightLogo;
private boolean isrightlogoenabled;
private boolean isbottomlogoenabled;
private String theme;
private String clientMessage;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getIcon() {
return icon;
}
public void setIcon(String icon) {
this.icon = icon;
}
public String getLogo() {
return logo;
}
public void setLogo(String logo) {
this.logo = logo;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getClientCode() {
return clientCode;
}
public void setClientCode(String clientCode) {
this.clientCode = clientCode;
}
public String getStyleSheet() {
return styleSheet;
}
public void setStyleSheet(String styleSheet) {
this.styleSheet = styleSheet;
}
public String getPStyleSheet() {
return pStyleSheet;
}
public void setPStyleSheet(String pStyleSheet) {
this.pStyleSheet = pStyleSheet;
}
public String getReportLeftLogo() {
return reportLeftLogo;
}
public void setReportLeftLogo(String reportLeftLogo) {
this.reportLeftLogo = reportLeftLogo;
}
public String getReportRightLogo() {
return reportRightLogo;
}
public void setReportRightLogo(String reportRightLogo) {
this.reportRightLogo = reportRightLogo;
}
public boolean isIsrightlogoenabled() {
return isrightlogoenabled;
}
public void setIsrightlogoenabled(boolean isrightlogoenabled) {
this.isrightlogoenabled = isrightlogoenabled;
}
public boolean isIsbottomlogoenabled() {
return isbottomlogoenabled;
}
public void setIsbottomlogoenabled(boolean isbottomlogoenabled) {
this.isbottomlogoenabled = isbottomlogoenabled;
}
public String getTheme() {
return theme;
}
public void setTheme(String theme) {
this.theme = theme;
}
public String getClientMessage() {
return clientMessage;
}
public void setClientMessage(String clientMessage) {
this.clientMessage = clientMessage;
}
public String getLogoRight() {
return logoRight;
}
public void setLogoRight(String logoRight) {
this.logoRight = logoRight;
}
}