Project

General

Profile

« Previous | Next » 

Revision 56978

- failedCallback
- update of dli objects
- WorkAround for duplicated sets from people repository

View differences:

DliEntity.java
7 7

  
8 8
	private List<DliIdentifier> identifiers = null;
9 9
	private List<DliProvider> objectProvider = null;
10
	private DliObjectType objectType;
10
	private String objectType;
11 11
	private List<DliPublisher> publisher = null;
12 12
	private String title;
13
	private List<DliCreator> creators = null;
13 14

  
14 15
	public List<DliIdentifier> getIdentifiers() {
15 16
		return identifiers;
......
27 28
		this.objectProvider = objectProvider;
28 29
	}
29 30

  
30
	public DliObjectType getObjectType() {
31
	public String getObjectType() {
31 32
		return objectType;
32 33
	}
33 34

  
34
	public void setObjectType(final DliObjectType objectType) {
35
	public void setObjectType(final String objectType) {
35 36
		this.objectType = objectType;
36 37
	}
37 38

  
......
51 52
		this.title = title;
52 53
	}
53 54

  
55
	public List<DliCreator> getCreators() {
56
		return creators;
57
	}
58

  
59
	public void setCreators(final List<DliCreator> creators) {
60
		this.creators = creators;
61
	}
62

  
54 63
}

Also available in: Unified diff