package com.infinite.focus.server.wall;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;


/**
 * 
 * @author Saboor
 * 
 *
 */

@Entity
public class WallPostAttachment {
	
	//PK
 	@Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private long wall_post_attachment_id;
 	
 	private long wall_post_id;
 	 	
	private String url, type;
		
	public WallPostAttachment() {
		super();
	}

	public long getWall_post_id() {
		return wall_post_id;
	}

	public void setWall_post_id(long wall_post_id) {
		this.wall_post_id = wall_post_id;
	}

	public long getWall_post_attachment_id() {
		return wall_post_attachment_id;
	}

	public void setWall_post_attachment_id(long wall_post_attachment_id) {
		this.wall_post_attachment_id = wall_post_attachment_id;
	}

	public String getUrl() {
		return url;
	}

	public void setUrl(String url) {
		this.url = url;
	}

	public String getType() {
		return type;
	}

	public void setType(String type){
		this.type = type;
	}


}
