Package com.jaxws.json.codec.doc

Examples of com.jaxws.json.codec.doc.JSONHttpMetadataPublisher


   */
  public @Nullable <T> T getSPI(@NotNull Class<T> type) {
    if (type == HttpMetadataPublisher.class) {
      // Overwrite http end point document provider.
      if (metadataPublisher == null)
        metadataPublisher = new JSONHttpMetadataPublisher(this);
      return type.cast(metadataPublisher);
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of com.jaxws.json.codec.doc.JSONHttpMetadataPublisher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.