/** * Copyright © 2006-2016 Web Cohesion (info@webcohesion.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.webcohesion.enunciate.modules.jaxws.model; import javax.xml.ws.http.HTTPBinding; import javax.xml.ws.soap.SOAPBinding; /** * Enumeration of the supported binding types. * * @author Ryan Heaton */ public enum BindingType { SOAP_1_1(SOAPBinding.SOAP11HTTP_BINDING), SOAP_1_2(SOAPBinding.SOAP12HTTP_BINDING), HTTP(HTTPBinding.HTTP_BINDING); private final String namespace; BindingType(String namespace) { this.namespace = namespace; } /** * The namespace for this binding type. * * @return The namespace for this binding type. */ public String getNamespace() { return namespace; } /** * Whether this binding type is SOAP 1.1. * * @return Whether this binding type is SOAP 1.1. */ public boolean isSoap11() { return SOAPBinding.SOAP11HTTP_BINDING.equals(getNamespace()); } /** * Whether this binding type is SOAP 1.2. * * @return Whether this binding type is SOAP 1.2. */ public boolean isSoap12() { return SOAPBinding.SOAP12HTTP_BINDING.equals(getNamespace()); } /** * Whether this binding type is HTTP. * * @return Whether this binding type is HTTP. */ public boolean isHttp() { return HTTPBinding.HTTP_BINDING.equals(getNamespace()); } /** * The binding type from a given namespace. * * @param namespace The namespace * @return The binding type from a given namespace. */ public static BindingType fromNamespace(String namespace) { for (BindingType bindingType : values()) { if (bindingType.getNamespace().equals(namespace)) { return bindingType; } } throw new IllegalArgumentException("Unsupported binding type: " + namespace); } }