root/head/ambra/webapp/src/main/java/org/topazproject/ambra/admin/action/AdminTopAction.java @ 6588

Revision 6588, 1.0 KB (checked in by pradeep, 23 months ago)

Clean up ambra.admin:

  • fix compile/javadoc warnings
  • add missing @Override
  • organize imports
  • Property svn:eol-style set to native
  • Property svn:keywords set to Id HeadURL Revision
Line 
1/* $HeadURL::                                                                            $
2 * $Id$
3 *
4 * Copyright (c) 2006-2008 by Topaz, Inc. http://topazproject.org
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 *     http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19package org.topazproject.ambra.admin.action;
20
21import org.springframework.transaction.annotation.Transactional;
22
23@SuppressWarnings("serial")
24public class AdminTopAction extends BaseAdminActionSupport {
25  @Override
26  @Transactional(readOnly = true)
27  public String execute() throws Exception {
28    return base();
29  }
30
31}
Note: See TracBrowser for help on using the browser.