Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | 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
 
9
import org.apache.juli.logging.Log;
10
import org.apache.juli.logging.LogFactory;
832 rajveer 11
import org.apache.log4j.Logger;
805 rajveer 12
 
13
/**
14
 * 
15
 * @author Vikas
16
 *
17
 */
18
 
19
 
20
public class StaticController extends BaseController {
21
 
22
	private static final long serialVersionUID = 6095443616072298613L;
832 rajveer 23
	private static Logger log = Logger.getLogger(Class.class);
805 rajveer 24
	private String id;
25
	public StaticController(){
26
		super();
27
	}
28
 
29
	public String show() throws SecurityException, IOException {
30
		return id;
31
    }
32
 
33
	public String getId(){
34
		return this.id;
35
	}
36
 
37
	public void setId(String id){
38
		this.id = id;
39
	}
40
}