Project

General

Profile

« Previous | Next » 

Revision 62047

added fields in Repository

View differences:

modules/uoa-domain/trunk/pom.xml
47 47
        </dependency>
48 48

  
49 49
    </dependencies>
50

  
51
    <build>
52
        <plugins>
53
            <plugin>
54
                <groupId>org.apache.maven.plugins</groupId>
55
                <artifactId>maven-javadoc-plugin</artifactId>
56
                <configuration>
57
                    <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
58
                </configuration>
59
                <version>3.2.0</version>
60
                <executions>
61
                    <execution>
62
                        <id>attach-javadocs</id>
63
                        <goals>
64
                            <goal>jar</goal>
65
                        </goals>
66
                    </execution>
67
                </executions>
68
            </plugin>
69
        </plugins>
70
    </build>
71

  
50 72
</project>
modules/uoa-domain/trunk/src/main/java/eu/dnetlib/domain/data/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