Project

General

Profile

« Previous | Next » 

Revision 50143

huge update: swagger documentation, alignment of methods with the service trunk

View differences:

FunderDetails.java
1 1
package eu.dnetlib.openaire.exporter.funders.model;
2 2

  
3 3
import java.util.Date;
4
import java.util.List;
5 4

  
6 5
import com.fasterxml.jackson.annotation.JsonAutoDetect;
7 6

  
......
20 19

  
21 20
	private Date lastUpdateDate;
22 21

  
23
	private List<FundingStream> fundingStreams;
24

  
25
	private String fundrefId;
26

  
27 22
	public String getId() {
28 23
		return id;
29 24
	}
......
48 43
		return lastUpdateDate;
49 44
	}
50 45

  
51
	public List<FundingStream> getFundingStreams() {
52
		return fundingStreams;
53
	}
54

  
55
	public String getFundrefId() {
56
		return fundrefId;
57
	}
58

  
59 46
	public FunderDetails setId(final String id) {
60 47
		this.id = id;
61 48
		return this;
......
86 73
		return this;
87 74
	}
88 75

  
89
	public FunderDetails setFundingStreams(final List<FundingStream> fundingStreams) {
90
		this.fundingStreams = fundingStreams;
91
		return this;
92
	}
93

  
94
	public FunderDetails setFundrefId(final String fundrefId) {
95
		this.fundrefId = fundrefId;
96
		return this;
97
	}
98

  
99 76
}

Also available in: Unified diff