View Javadoc

1   /**********************************************************************
2    * IRequest.java
3    * created on 26.05.2007 by netseeker
4    * $Id: IRequest.java,v 1.1 2007/05/27 22:13:09 netseeker Exp $
5    * $Log: IRequest.java,v $
6    * Revision 1.1  2007/05/27 22:13:09  netseeker
7    * *** empty log message ***
8    *
9    *
10   * ====================================================================
11   *
12   *  Copyright 2005-2006 netseeker aka Michael Manske
13   *
14   *  Licensed under the Apache License, Version 2.0 (the "License");
15   *  you may not use this file except in compliance with the License.
16   *  You may obtain a copy of the License at
17   *
18   *      http://www.apache.org/licenses/LICENSE-2.0
19   *
20   *  Unless required by applicable law or agreed to in writing, software
21   *  distributed under the License is distributed on an "AS IS" BASIS,
22   *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23   *  See the License for the specific language governing permissions and
24   *  limitations under the License.
25   * ====================================================================
26   *
27   * This file is part of the EJOE framework.
28   * For more information on the author, please see
29   * <http://www.manskes.de/>.
30   *
31   *********************************************************************/
32  package de.netseeker.ejoe.request;
33  
34  /***
35   * @author netseeker
36   * 
37   * @since 0.3.9.3
38   */
39  public interface IRequest
40  {
41      public String getUniqueName();
42  }