Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
20424 kshitij.so 1
package com.hotspotstore.controllers;
2
 
3
import java.io.IOException;
4
 
5
 
6
@SuppressWarnings("serial")
7
public class StaticController extends BaseController {
8
 
9
	private String id;
10
	public StaticController(){
11
		super();
12
	}
13
 
14
	public String show() throws SecurityException, IOException {
15
		return id;
16
    }
17
 
18
	public String getId(){
19
		return this.id;
20
	}
21
 
22
	public void setId(String id){
23
		this.id = id;
24
	}
25
}