KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cocoon > components > repository > RepositoryInterceptorBase


1 /*
2 * Copyright 1999-2004 The Apache Software Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */

16 /* Created on Oct 18, 2003 7:00:43 PM by unico */
17 package org.apache.cocoon.components.repository;
18
19 import org.apache.excalibur.source.Source;
20 import org.apache.excalibur.source.SourceException;
21
22 /**
23  * NOP implementation of RepositoryInterceptor.
24  *
25  * @author <a HREF="mailto:unico@apache.org">Unico Hommes</a>
26  */

27 public abstract class RepositoryInterceptorBase implements RepositoryInterceptor {
28
29     /* (non-Javadoc)
30      * @see org.apache.cocoon.components.repository.RepositoryInterceptor#postRemoveSource(org.apache.excalibur.source.Source)
31      */

32     public void postRemoveSource(Source source) throws SourceException {
33     }
34
35     /* (non-Javadoc)
36      * @see org.apache.cocoon.components.repository.RepositoryInterceptor#postStoreSource(org.apache.excalibur.source.Source)
37      */

38     public void postStoreSource(Source source) throws SourceException {
39     }
40
41     /* (non-Javadoc)
42      * @see org.apache.cocoon.components.repository.RepositoryInterceptor#preRemoveSource(org.apache.excalibur.source.Source)
43      */

44     public void preRemoveSource(Source source) throws SourceException {
45     }
46
47     /* (non-Javadoc)
48      * @see org.apache.cocoon.components.repository.RepositoryInterceptor#preStoreSource(org.apache.excalibur.source.Source)
49      */

50     public void preStoreSource(Source source) throws SourceException {
51     }
52
53 }
54
Popular Tags