Clover Coverage Report - KS Security 1.1 (Aggregated)
Coverage timestamp: Sun Mar 6 2011 21:17:18 EST
../../../../../../img/srcFileCovDistChart0.png 6% of files have more coverage
2   25   3   0.67
0   20   1.5   3
3     1  
1    
 
  AttachmentOutInterceptor       Line # 7 2 0% 3 5 0% 0.0
 
No Tests
 
1    package org.kuali.student.security.cxf.interceptors;
2   
3    import org.apache.cxf.message.Message;
4    import org.apache.cxf.phase.AbstractPhaseInterceptor;
5    import org.apache.cxf.phase.Phase;
6   
 
7    public class AttachmentOutInterceptor extends AbstractPhaseInterceptor<Message> {
 
8  0 toggle public AttachmentOutInterceptor() {
9  0 super(Phase.PRE_PROTOCOL);
10    }
11   
 
12  0 toggle public void handleMessage(Message message) {
13  0 System.out.println("\n\n In the AttachmentOutInterceptor on the bus that does nothing ...... \n" +
14    " inbound message ... "+ message.getContextualProperty(Message.INBOUND_MESSAGE) + "\n" +
15    " wsdl service .... " + message.getContextualProperty(Message.WSDL_SERVICE) + "\n" +
16    " wsdl operation .... " + message.getContextualProperty(Message.WSDL_OPERATION) + "\n" +
17    " request uri .... " + message.getContextualProperty(Message.REQUEST_URI) + "\n" +
18    " path info .... " + message.getContextualProperty(Message.PATH_INFO) + "\n"
19    );
20    }
21   
 
22  0 toggle public void handleFault(Message messageParam) {
23    }
24   
25    }