Subversion Repositories SmartDukaan

Rev

Rev 1044 | 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
import java.io.IOException;
7
 
8
/**
9
 * 
10
 * @author Vikas
11
 *
12
 */
2148 chandransh 13
@SuppressWarnings("serial")
14
public class StaticController extends BaseController {
805 rajveer 15
 
16
	private String id;
17
	public StaticController(){
18
		super();
19
	}
20
 
21
	public String show() throws SecurityException, IOException {
22
		return id;
23
    }
24
 
25
	public String getId(){
26
		return this.id;
27
	}
28
 
29
	public void setId(String id){
30
		this.id = id;
31
	}
32
}