Project

General

Profile

« Previous | Next » 

Revision 62047

added fields in Repository

View differences:

Repository.java
80 80
	private Integer maxSizeOfDatastructure = Integer.valueOf(0);
81 81
	private Integer maxNumberOfDataStructures = Integer.valueOf(0);
82 82

  
83
	private Boolean consentTermsOfUse;
84
	private Boolean fullTextDownload;
85
	private Date consentTermsOfUseDate;
83 86

  
84 87
	private Boolean registered = false;
85 88

  
......
732 735
	public void setPiwikInfo(PiwikInfo piwikInfo) {
733 736
		this.piwikInfo = piwikInfo;
734 737
	}
735
}
738

  
739
	public Boolean getConsentTermsOfUse() {
740
		return consentTermsOfUse;
741
	}
742

  
743
	public void setConsentTermsOfUse(Boolean consentTermsOfUse) {
744
		this.consentTermsOfUse = consentTermsOfUse;
745
	}
746

  
747
	public Boolean getFullTextDownload() {
748
		return fullTextDownload;
749
	}
750

  
751
	public void setFullTextDownload(Boolean fullTextDownload) {
752
		this.fullTextDownload = fullTextDownload;
753
	}
754

  
755
	public Date getConsentTermsOfUseDate() {
756
		return consentTermsOfUseDate;
757
	}
758

  
759
	public void setConsentTermsOfUseDate(Date consentTermsOfUseDate) {
760
		this.consentTermsOfUseDate = consentTermsOfUseDate;
761
	}
762
}

Also available in: Unified diff