01: /*
02: * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.desktop.monitoring;
06:
07: public interface DesktopRequestStatistic {
08: public static final String DESKTOP_REQUEST_CONTENT = "Content";
09: public static final String DESKTOP_REQUEST_EDIT = "Edit";
10: public static final String DESKTOP_REQUEST_EXCEPTION = "Exception";
11: public static final String DESKTOP_REQUEST_LOCALAUTH = "LocalAuth";
12: public static final String DESKTOP_REQUEST_LOGOUT = "Logout";
13: public static final String DESKTOP_REQUEST_PRELOGIN = "PreLogin";
14: public static final String DESKTOP_REQUEST_PROCESS = "Process";
15:
16: public void mark();
17:
18: public void measure(String requestType);
19: }
|