Clover coverage report - Maven Clover report
Coverage timestamp: Sun Jun 1 2008 19:59:48 EST
file stats: LOC: 38   Methods: 4
NCLOC: 13   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
NoOpEnvelopeInterceptor.java - 0% 0% 0%
coverage
 1    /**
 2    * Copyright 2007 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    package org.codehaus.wadi.group;
 17   
 18   
 19    /**
 20    * @version $Revision: 1563 $
 21    */
 22    public class NoOpEnvelopeInterceptor implements EnvelopeInterceptor {
 23   
 24  0 public Envelope onInboundEnvelope(Envelope envelope) throws MessageExchangeException {
 25  0 return envelope;
 26    }
 27   
 28  0 public Envelope onOutboundEnvelope(Envelope envelope) throws MessageExchangeException {
 29  0 return envelope;
 30    }
 31   
 32  0 public void registerLoopbackEnvelopeListener(EnvelopeListener envelopeListener) {
 33    }
 34   
 35  0 public void unregisterLoopbackEnvelopeListener(EnvelopeListener envelopeListener) {
 36    }
 37   
 38    }