View Javadoc

1   package com.eviware.soapui.impl.wsdl.support.wss.entries;
2   
3   import com.eviware.soapui.impl.wsdl.support.wss.IncomingWss;
4   import com.eviware.soapui.impl.wsdl.support.wss.OutgoingWss;
5   import com.eviware.soapui.impl.wsdl.support.wss.WssContainerListener;
6   import com.eviware.soapui.impl.wsdl.support.wss.WssCrypto;
7   import com.eviware.soapui.impl.wsdl.support.wss.WssEntry;
8   
9   public class WssContainerListenerAdapter implements WssContainerListener
10  {
11  	public void cryptoAdded( WssCrypto crypto )
12  	{
13  		// TODO Auto-generated method stub
14  
15  	}
16  
17  	public void cryptoRemoved( WssCrypto crypto )
18  	{
19  		// TODO Auto-generated method stub
20  
21  	}
22  
23  	public void incomingWssAdded( IncomingWss incomingWss )
24  	{
25  		// TODO Auto-generated method stub
26  
27  	}
28  
29  	public void incomingWssRemoved( IncomingWss incomingWss )
30  	{
31  		// TODO Auto-generated method stub
32  
33  	}
34  
35  	public void outgoingWssAdded( OutgoingWss outgoingWss )
36  	{
37  		// TODO Auto-generated method stub
38  
39  	}
40  
41  	public void outgoingWssEntryAdded( WssEntry entry )
42  	{
43  		// TODO Auto-generated method stub
44  
45  	}
46  
47  	public void outgoingWssEntryRemoved( WssEntry entry )
48  	{
49  		// TODO Auto-generated method stub
50  
51  	}
52  
53  	public void outgoingWssRemoved( OutgoingWss outgoingWss )
54  	{
55  		// TODO Auto-generated method stub
56  
57  	}
58  
59  	public void cryptoUpdated( WssCrypto crypto )
60  	{
61  		// TODO Auto-generated method stub
62  		
63  	}
64  
65  }