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;
11
 
12
/**
13
 * 
14
 * @author Vikas
15
 *
16
 */
17
 
18
 
19
public class StaticController extends BaseController {
20
 
21
	private static final long serialVersionUID = 6095443616072298613L;
22
	private static Log log = LogFactory.getLog(StaticController.class);
23
	private String id;
24
	public StaticController(){
25
		super();
26
	}
27
 
28
	public String show() throws SecurityException, IOException {
29
		return id;
30
    }
31
 
32
	public String getId(){
33
		return this.id;
34
	}
35
 
36
	public void setId(String id){
37
		this.id = id;
38
	}
39
}