Project

General

Profile

« Previous | Next » 

Revision 56746

View differences:

OtherIdentifier.java
20 20

  
21 21
	@Id
22 22
	@Column(name = "id")
23
	private String docId;
23
	private String orgId;
24 24

  
25 25
	@Id
26 26
	@Column(name = "otherid")
......
30 30
	@Column(name = "type")
31 31
	private String type;
32 32

  
33
	public String getDocId() {
34
		return docId;
33
	public OtherIdentifier() {}
34

  
35
	public OtherIdentifier(final String orgId, final String otherId, final String type) {
36
		this.orgId = orgId;
37
		this.otherId = otherId;
38
		this.type = type;
35 39
	}
36 40

  
37
	public void setDocId(final String docId) {
38
		this.docId = docId;
41
	public String getOrgId() {
42
		return orgId;
39 43
	}
40 44

  
45
	public void setOrgId(final String orgId) {
46
		this.orgId = orgId;
47
	}
48

  
41 49
	public String getOtherId() {
42 50
		return otherId;
43 51
	}
......
53 61
	public void setType(final String type) {
54 62
		this.type = type;
55 63
	}
64

  
56 65
}

Also available in: Unified diff