Example usage for javax.xml.ws.handler MessageContext containsKey

List of usage examples for javax.xml.ws.handler MessageContext containsKey

Introduction

In this page you can find the example usage for javax.xml.ws.handler MessageContext containsKey.

Prototype

boolean containsKey(Object key);

Source Link

Document

Returns true if this map contains a mapping for the specified key.

Usage

From source file:org.apache.juddi.xlt.util.LoggingHandler.java

private boolean isFaultReceived(MessageContext context) {
    return context.containsKey(XLT_FAULT);
}