OSDN Git Service

全てのjavaファイルにモードライン追加。
[rabbit-bts/RabbitBTS.git] / src / jp / sourceforge / rabbitBTS / controllers / IndexController.java
index 2a041b0..b4a61ce 100644 (file)
@@ -1,3 +1,4 @@
+// vim:set ts=4 sts=4 sw=4 noet fenc=utf-8:
 /*
    Copyright 2009 senju@users.sourceforge.jp
 
@@ -12,8 +13,7 @@
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
-*/
-
+ */
 
 package jp.sourceforge.rabbitBTS.controllers;
 
@@ -22,9 +22,14 @@ import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
 
 @Controller
-public class IndexController {
+public final class IndexController extends BaseController implements
+               IPublicController {
        @RequestMapping(method = RequestMethod.GET, value = "/index.html")
        public void index() {
+       }
+
+       @RequestMapping(value = "/error404.html")
+       public void error404() {
 
        }