1 /**********************************************************************
2 * PingRequest.java
3 * created on 23.05.2007 by netseeker
4 * $Id: PingRequest.java,v 1.1 2007/05/27 22:13:09 netseeker Exp $
5 * $Log: PingRequest.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 import java.io.Serializable;
35
36 /***
37 * @author netseeker
38 * @since 0.3.9.3
39 */
40 public class PingRequest implements Serializable, IRequest
41 {
42 public static final String UNIQUE_NAME="de.netseeker.ejoe.request.PingRequest";
43
44 private static final long serialVersionUID = 1L;
45
46 /***
47 *
48 */
49 public PingRequest()
50 {
51 }
52
53
54
55
56 public String getUniqueName()
57 {
58 return UNIQUE_NAME;
59 }
60 }