KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > slide > webdav > util > NotificationConstants


1 /*
2  * $Header: /home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/util/NotificationConstants.java,v 1.7 2004/07/28 09:32:08 ib Exp $
3  * $Revision: 1.7 $
4  * $Date: 2004/07/28 09:32:08 $
5  *
6  * ====================================================================
7  *
8  * Copyright 2004 The Apache Software Foundation
9  *
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  * http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  *
22  */

23
24 package org.apache.slide.webdav.util;
25
26 /**
27  * Notification constants.
28  *
29  */

30 public interface NotificationConstants extends WebdavConstants {
31     /** Headers */
32     String JavaDoc H_NOTIFICATION_TYPE = "Notification-type";
33     String JavaDoc H_NOTIFICATION_DELAY = "Notification-delay";
34     String JavaDoc H_SUBSCRIPTION_LIFETIME = "Subscription-lifetime";
35     String JavaDoc H_SUBSCRIPTION_ID = "Subscription-ID";
36     String JavaDoc H_SUBSCRIPTION_ID_RESPONSE = "Subscription-id";
37     String JavaDoc H_CALL_BACK = "Call-back";
38     String JavaDoc H_CONTENT_LOCATION = "Content-Location";
39
40     /** XML Elements */
41     String JavaDoc E_SUBSCRIPTION_ID = "subscriptionID";
42     String JavaDoc E_LISTENER = "li";
43     String JavaDoc E_FIRE_EVENTS = "fire-events";
44     String JavaDoc E_EVENT = "event";
45     String JavaDoc E_VETOABLE_EVENT = "vetoable-event";
46     String JavaDoc E_INFORMATION = "information";
47
48     /** Attributes */
49     String JavaDoc A_INFORMATION_KEY = "name";
50
51     /** Namespace */
52     String JavaDoc N_PREFIX = "N";
53     String JavaDoc N_URI = "http://schemas.microsoft.com/Exchange/";
54 }
55
Popular Tags