KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > slide > webdav > event > WebdavAdapter


1 /*
2  * $Header: /home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/event/WebdavAdapter.java,v 1.5 2004/07/28 09:32:51 ib Exp $
3  * $Revision: 1.5 $
4  * $Date: 2004/07/28 09:32:51 $
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.event;
25
26 import org.apache.slide.event.VetoException;
27
28 /**
29  * Webdav adapter class
30  *
31  * @version $Revision: 1.5 $
32  */

33 public class WebdavAdapter implements WebdavListener {
34     public void get(WebdavEvent event) throws VetoException {
35     }
36
37     public void put(WebdavEvent event) throws VetoException {
38     }
39
40     public void propFind(WebdavEvent event) throws VetoException {
41     }
42
43     public void propPatch(WebdavEvent event) throws VetoException {
44     }
45
46     public void bind(WebdavEvent event) throws VetoException {
47     }
48
49     public void rebind(WebdavEvent event) throws VetoException {
50     }
51
52     public void unbind(WebdavEvent event) throws VetoException {
53     }
54
55     public void mkcol(WebdavEvent event) throws VetoException {
56     }
57
58     public void copy(WebdavEvent event) throws VetoException {
59     }
60
61     public void move(WebdavEvent event) throws VetoException {
62     }
63
64     public void delete(WebdavEvent event) throws VetoException {
65     }
66
67     public void lock(WebdavEvent event) throws VetoException {
68     }
69
70     public void unlock(WebdavEvent event) throws VetoException {
71     }
72
73     public void acl(WebdavEvent event) throws VetoException {
74     }
75
76     public void report(WebdavEvent event) throws VetoException {
77     }
78
79     public void search(WebdavEvent event) throws VetoException {
80     }
81
82     public void versionControl(WebdavEvent event) throws VetoException {
83     }
84
85     public void options(WebdavEvent event) throws VetoException {
86     }
87
88     public void update(WebdavEvent event) throws VetoException {
89     }
90
91     public void checkin(WebdavEvent event) throws VetoException {
92     }
93
94     public void checkout(WebdavEvent event) throws VetoException {
95     }
96
97     public void uncheckout(WebdavEvent event) throws VetoException {
98     }
99
100     public void label(WebdavEvent event) throws VetoException {
101     }
102
103     public void mkworkspace(WebdavEvent event) throws VetoException {
104     }
105
106     public void subscribe(WebdavEvent event) throws VetoException {
107     }
108
109     public void unsubscribe(WebdavEvent event) throws VetoException {
110     }
111
112     public void poll(WebdavEvent event) throws VetoException {
113     }
114 }
Popular Tags