Subversion Repositories SmartDukaan

Rev

Rev 25427 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 25427 Rev 33784
Line 1... Line 1...
1
package com.spice.profitmandi.web.res;
1
package com.spice.profitmandi.web.res;
2
 
2
 
3
import com.spice.profitmandi.dao.model.ContentPojo;
3
import com.spice.profitmandi.dao.model.ContentPojo;
4
 
4
 
-
 
5
import java.util.List;
-
 
6
 
5
public class EntityResponse {
7
public class EntityResponse {
6
	private ContentPojo entity;
8
	private ContentPojo entity;
-
 
9
	private List<ContentPojo> entities;
7
 
10
 
8
	public ContentPojo getEntity() {
11
	public ContentPojo getEntity() {
9
		return entity;
12
		return entity;
10
	}
13
	}
11
 
14
 
12
	public void setEntity(ContentPojo entity) {
15
	public void setEntity(ContentPojo entity) {
13
		this.entity = entity;
16
		this.entity = entity;
14
	}
17
	}
15
 
18
 
-
 
19
	public List<ContentPojo> getEntities() {
-
 
20
		return entities;
-
 
21
	}
-
 
22
 
-
 
23
	public void setEntities(List<ContentPojo> entities) {
-
 
24
		this.entities = entities;
-
 
25
	}
16
}
26
}
17
27