summaryrefslogtreecommitdiffstats
path: root/tags/java-stable-20060304/sca/core/src/main/java/org/apache/tuscany/core/context/EventContext.java
blob: 9f7c98200ae99758c7b1ef71c1d0cdccbfefe452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/**
 *
 *  Copyright 2005 The Apache Software Foundation or its licensors, as applicable.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  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 org.apache.tuscany.core.context;

/**
 * Implementations are responsible for tracking scope keys associated with the current request.
 * 
 * @version $Rev$ $Date$
 */
public interface EventContext {

    /* An event type fired when a request is first serviced in the runtime */
    public static final int REQUEST_START = 1;

    /* An event type fired when the runtime finishes servicing a request */
    public static final int REQUEST_END = 2;

    /* An event type fired when a session is set for the current context */
    public static final int SESSION_NOTIFY = 3;

    /* An event type fired when a session is invalidated in the runtime */
    public static final int SESSION_END = 4;

    /* An event type fired when the current deployment unit is initialized */
    public static final int MODULE_START = 5;

    /* An event type fired when the current deployment unit is quiesced */
    public static final int MODULE_STOP = 6;

    public static final int SYSTEM_START = 7;
    
    public static final int SYSTEM_STOP = 8;

    /* An identifier type associated with an HTTP session */
    public static final Object HTTP_SESSION = new Object();

    /**
     * Returns the unique key for the given identifier, e.g a session
     */
    public Object getIdentifier(Object type);

    /**
     * Sets the unique key for the given identifier, e.g a session
     */
    public void setIdentifier(Object type, Object identifier);

    /**
     * Clears the unique key for the given identifier, e.g a session
     */
    public void clearIdentifier(Object type);

}