This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by malintha on 9/25/14. | |
*/ | |
public class LoggingModule implements Module { | |
public void init(ConfigurationContext configurationContext, AxisModule axisModule) throws AxisFault {} | |
public void engageNotify(AxisDescription axisDescription) throws AxisFault {} | |
public void shutdown(ConfigurationContext configurationContext) throws AxisFault {} | |
public void applyPolicy(org.apache.neethi.Policy policy, AxisDescription axisDescription) throws AxisFault {} | |
public boolean canSupportAssertion(org.apache.neethi.Assertion assertion) { | |
return false; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment