blob: 87925c34b7be74eda893dd26d019631ea89df8c5 [file] [log] [blame]
/*
* Portions Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code 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 General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
package com.sun.tools.internal.ws.wsdl.document;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import javax.xml.namespace.QName;
import com.sun.tools.internal.ws.wsdl.framework.Defining;
import com.sun.tools.internal.ws.wsdl.framework.Entity;
import com.sun.tools.internal.ws.wsdl.framework.EntityAction;
import com.sun.tools.internal.ws.wsdl.framework.ExtensibilityHelper;
import com.sun.tools.internal.ws.wsdl.framework.Extensible;
import com.sun.tools.internal.ws.wsdl.framework.Extension;
import com.sun.tools.internal.ws.wsdl.framework.GlobalEntity;
import com.sun.tools.internal.ws.wsdl.framework.Kind;
/**
* Entity corresponding to the "service" WSDL element.
*
* @author WS Development Team
*/
public class Service extends GlobalEntity implements Extensible {
public Service(Defining defining) {
super(defining);
_ports = new ArrayList();
_helper = new ExtensibilityHelper();
}
public void add(Port port) {
port.setService(this);
_ports.add(port);
}
public Iterator <Port> ports() {
return _ports.iterator();
}
public Kind getKind() {
return Kinds.SERVICE;
}
public QName getElementName() {
return WSDLConstants.QNAME_SERVICE;
}
public Documentation getDocumentation() {
return _documentation;
}
public void setDocumentation(Documentation d) {
_documentation = d;
}
public void withAllSubEntitiesDo(EntityAction action) {
for (Iterator iter = _ports.iterator(); iter.hasNext();) {
action.perform((Entity) iter.next());
}
_helper.withAllSubEntitiesDo(action);
}
public void accept(WSDLDocumentVisitor visitor) throws Exception {
visitor.preVisit(this);
for (Iterator iter = _ports.iterator(); iter.hasNext();) {
((Port) iter.next()).accept(visitor);
}
_helper.accept(visitor);
visitor.postVisit(this);
}
public void validateThis() {
if (getName() == null) {
failValidation("validation.missingRequiredAttribute", "name");
}
}
public void addExtension(Extension e) {
_helper.addExtension(e);
}
public Iterator extensions() {
return _helper.extensions();
}
private ExtensibilityHelper _helper;
private Documentation _documentation;
private List <Port> _ports;
}