Subversion Repositories SmartDukaan

Rev

Rev 2148 | Blame | Compare with Previous | Last modification | View Log | RSS feed

/**
 * 
 */
package in.shop2020.serving.controllers;

import java.io.IOException;

/**
 * 
 * @author Rajveer
 *
 */
@SuppressWarnings("serial")
public class StaticController extends BaseController {

        private String id;
        public StaticController(){
                super();
        }

        public String show() throws SecurityException, IOException {
                return id;
    }
        
        public String getId(){
                return this.id;
        }
        
        public void setId(String id){
                this.id = id;
        }
}