Subversion Repositories SmartDukaan

Rev

Rev 1034 | Rev 2148 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
805 rajveer 1
/**
2
 * 
3
 */
4
package in.shop2020.serving.controllers;
5
 
6
 
7
import java.io.IOException;
8
 
832 rajveer 9
import org.apache.log4j.Logger;
805 rajveer 10
 
11
/**
12
 * 
13
 * @author Vikas
14
 *
15
 */
16
 
17
 
18
public class StaticController extends BaseController {
19
 
20
	private static final long serialVersionUID = 6095443616072298613L;
832 rajveer 21
	private static Logger log = Logger.getLogger(Class.class);
805 rajveer 22
	private String id;
23
	public StaticController(){
24
		super();
25
	}
26
 
27
	public String show() throws SecurityException, IOException {
28
		return id;
29
    }
30
 
31
	public String getId(){
32
		return this.id;
33
	}
34
 
35
	public void setId(String id){
36
		this.id = id;
37
	}
38
}