Blame | Last modification | View Log | RSS feed
package com.hotspotstore.controllers;import java.io.IOException;@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;}}