1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
|
/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
// $Id: PortComponentMetaData.java 3146 2007-05-18 22:55:26Z thomas.diesler@jboss.com $
package org.jboss.wsf.spi.metadata.webservices;
// $Id: PortComponentMetaData.java 3146 2007-05-18 22:55:26Z thomas.diesler@jboss.com $
import java.util.ArrayList;
import java.util.List;
import javax.xml.namespace.QName;
import org.jboss.logging.Logger;
import org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedHandlerChainsMetaData;
import org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedHandlerMetaData;
/**
* XML Binding and ws4ee meta-data element for
* <code>webservices/webservice-description/port-component</code>
* <p/>
* A port component is the equivalent of an ordinary Axis service (and
* as such it constitutes the building blocks for jaxrpc services).
* <p/>
*
* @author Thomas.Diesler@jboss.org
* @since 15-April-2004
*/
public class PortComponentMetaData
{
/**
* The index of the webservice-description in webservices.xml
*/
public static final String PARAMETER_WEBSERVICE_ID = "webserviceID";
// provide logging
private static final Logger log = Logger.getLogger(PortComponentMetaData.class);
// The parent <webservice-description> element
private WebserviceDescriptionMetaData webserviceDescription;
/** The required <port-component-name> element
* This name bears no relationship to the WSDL port name.
* This name must be unique amongst all port component names in a module.
*/
private String portComponentName;
// The required <wsdl-port> element
private QName wsdlPort;
// The required <service-endpoint-interface> element
private String serviceEndpointInterface;
// The required <ejb-link> or <servlet-link> in the <service-impl-bean> element
private String ejbLink;
private String servletLink;
// The optional <handler> elements
private List<UnifiedHandlerMetaData> handlers = new ArrayList<UnifiedHandlerMetaData>();
// The HTTP context root
private String contextRoot;
// The optional secure wsdl access
private Boolean secureWSDLAccess;
// -----------------------------------------
// JAX-WS additions
private boolean enableMtom;
private QName wsdlService;
private String protocolBinding;
private UnifiedHandlerChainsMetaData handlerChains;
/** Construct a new PortComponentMetaData for a given WebserviceDescriptionMetaData
*/
public PortComponentMetaData(WebserviceDescriptionMetaData webserviceDescription)
{
this.webserviceDescription = webserviceDescription;
}
public WebserviceDescriptionMetaData getWebserviceDescription()
{
return webserviceDescription;
}
public String getPortComponentName()
{
return portComponentName;
}
public void setPortComponentName(String portComponentName)
{
this.portComponentName = portComponentName;
}
public QName getWsdlPort()
{
return wsdlPort;
}
public void setWsdlPort(QName wsdlPort)
{
if (wsdlPort.getNamespaceURI().length() == 0)
log.warn("<wsdl-port> element in webservices.xml not namespace qualified: " + wsdlPort);
this.wsdlPort = wsdlPort;
}
public String getEjbLink()
{
return ejbLink;
}
public void setEjbLink(String ejbLink)
{
this.ejbLink = ejbLink;
}
public String getServletLink()
{
return servletLink;
}
public void setServletLink(String servletLink)
{
this.servletLink = servletLink;
}
public String getServiceEndpointInterface()
{
return serviceEndpointInterface;
}
public void setServiceEndpointInterface(String serviceEndpointInterface)
{
this.serviceEndpointInterface = serviceEndpointInterface;
}
public void addHandler(UnifiedHandlerMetaData handler)
{
handlers.add(handler);
}
public UnifiedHandlerMetaData[] getHandlers()
{
UnifiedHandlerMetaData[] array = new UnifiedHandlerMetaData[handlers.size()];
handlers.toArray(array);
return array;
}
public String getContextRoot()
{
return contextRoot;
}
public void setContextRoot(String contextRoot)
{
this.contextRoot = contextRoot;
}
public Boolean getSecureWSDLAccess()
{
return secureWSDLAccess;
}
public void setSecureWSDLAccess(Boolean secureWSDLAccess)
{
this.secureWSDLAccess = secureWSDLAccess;
}
public boolean isEnableMtom()
{
return enableMtom;
}
public void setEnableMtom(boolean enableMtom)
{
this.enableMtom = enableMtom;
}
public QName getWsdlService()
{
return wsdlService;
}
public void setWsdlService(QName wsdlService)
{
this.wsdlService = wsdlService;
}
public String getProtocolBinding()
{
return protocolBinding;
}
public void setProtocolBinding(String protocolBinding)
{
this.protocolBinding = protocolBinding;
}
public UnifiedHandlerChainsMetaData getHandlerChains()
{
return handlerChains;
}
public void setHandlerChains(UnifiedHandlerChainsMetaData handlerChains)
{
this.handlerChains = handlerChains;
}
public String serialize()
{
StringBuilder builder = new StringBuilder("<port-component>");
builder.append("<port-component-name>").append(portComponentName).append("</port-component-name>");
builder.append("<wsdl-port xmlns:").append(wsdlPort.getPrefix()).append("='").append(wsdlPort.getNamespaceURI()).append("'>");
builder.append(wsdlPort.getPrefix()).append(':').append(wsdlPort.getLocalPart()).append("</wsdl-port>");
builder.append("<service-endpoint-interface>").append(serviceEndpointInterface).append("</service-endpoint-interface>");
builder.append("<service-impl-bean>");
if (ejbLink != null)
builder.append("<ejb-link>" + ejbLink + "</ejb-link>");
else
builder.append("<servlet-link>"+ servletLink + "</servlet-link>");
builder.append("</service-impl-bean>");
builder.append("</port-component>");
return builder.toString();
}
}
|