Subversion Repositories SmartDukaan

Rev

Rev 21734 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 21734 Rev 25427
Line 1... Line 1...
1
package com.spice.profitmandi.web.res;
1
package com.spice.profitmandi.web.res;
2
 
2
 
3
public class EntityResponse
-
 
4
{
-
 
5
    private Entity entity;
3
import com.spice.profitmandi.dao.model.ContentPojo;
6
 
4
 
7
    public Entity getEntity ()
5
public class EntityResponse {
8
    {
-
 
9
        return entity;
6
	private ContentPojo entity;
10
    }
-
 
11
 
7
 
12
    public void setEntity (Entity entity)
8
	public ContentPojo getEntity() {
-
 
9
		return entity;
13
    {
10
	}
-
 
11
 
-
 
12
	public void setEntity(ContentPojo entity) {
14
        this.entity = entity;
13
		this.entity = entity;
15
    }
14
	}
16
 
15
 
17
}
16
}
18
17