1 16 17 package org.apache.cocoon.components.repository; 18 19 import org.apache.excalibur.source.Source; 20 import org.apache.excalibur.source.SourceException; 21 22 27 public abstract class RepositoryInterceptorBase implements RepositoryInterceptor { 28 29 32 public void postRemoveSource(Source source) throws SourceException { 33 } 34 35 38 public void postStoreSource(Source source) throws SourceException { 39 } 40 41 44 public void preRemoveSource(Source source) throws SourceException { 45 } 46 47 50 public void preStoreSource(Source source) throws SourceException { 51 } 52 53 } 54 | Popular Tags |