Project

General

Profile

1 53866 miriam.bag
package eu.dnetlib.openaire.community;
2
3
import javax.validation.constraints.NotNull;
4
5
import com.fasterxml.jackson.annotation.JsonAutoDetect;
6
import io.swagger.annotations.ApiModelProperty;
7
8
@JsonAutoDetect
9
public class CommunityZenodoCommunity {
10
11
12
13
    @NotNull
14 53871 miriam.bag
    @ApiModelProperty(value = "the community identifier this zenodo Community belongs to", required = true)
15 53866 miriam.bag
    private String communityId;
16
17
    @NotNull
18
    @ApiModelProperty(value = "Zenodo identifier for this community", required = true)
19
    private String zenodoid;
20
21
    @NotNull
22
    @ApiModelProperty(value = "identifies this zenodo community within the context it belongs to", required = true)
23
    private String id;
24
25
26
    public String getZenodoid() {
27
        return zenodoid;
28
    }
29
30
    public void setZenodoid(String zenodoid) {
31
        this.zenodoid = zenodoid;
32
    }
33
34
    public String getId() {
35
        return id;
36
    }
37
38
    public void setId(final String id) {
39
        this.id = id;
40
    }
41
42
    public String getCommunityId() {
43
        return communityId;
44
    }
45
46
    public void setCommunityId(String communityId) {
47
        this.communityId = communityId;
48
    }
49
50 53908 miriam.bag
51 53866 miriam.bag
}