src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/Model.java

changeset 0
373ffda63c9a
child 637
9c07ef4934dd
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/Model.java	Wed Apr 27 01:27:09 2016 +0800
     1.3 @@ -0,0 +1,158 @@
     1.4 +/*
     1.5 + * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.  Oracle designates this
    1.11 + * particular file as subject to the "Classpath" exception as provided
    1.12 + * by Oracle in the LICENSE file that accompanied this code.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 + * version 2 for more details (a copy is included in the LICENSE file that
    1.18 + * accompanied this code).
    1.19 + *
    1.20 + * You should have received a copy of the GNU General Public License version
    1.21 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.22 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 + *
    1.24 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.25 + * or visit www.oracle.com if you need additional information or have any
    1.26 + * questions.
    1.27 + */
    1.28 +
    1.29 +package com.sun.tools.internal.ws.processor.model;
    1.30 +
    1.31 +import com.sun.tools.internal.ws.processor.model.jaxb.JAXBModel;
    1.32 +import com.sun.tools.internal.ws.wsdl.framework.Entity;
    1.33 +
    1.34 +import javax.xml.namespace.QName;
    1.35 +import java.util.*;
    1.36 +
    1.37 +/**
    1.38 + * The model is used to represent the entire Web Service.  The JAX-WS ProcessorActions can process
    1.39 + * this Model to generate Java artifacts such as the service interface.
    1.40 + *
    1.41 + * @author WS Development Team
    1.42 + */
    1.43 +public class Model extends ModelObject {
    1.44 +
    1.45 +    public Model(Entity entity) {
    1.46 +        super(entity);
    1.47 +    }
    1.48 +
    1.49 +    public Model(QName name, Entity entity) {
    1.50 +        super(entity);
    1.51 +        this.name = name;
    1.52 +    }
    1.53 +
    1.54 +    public QName getName() {
    1.55 +        return name;
    1.56 +    }
    1.57 +
    1.58 +    public void setName(QName n) {
    1.59 +        name = n;
    1.60 +    }
    1.61 +
    1.62 +    public String getTargetNamespaceURI() {
    1.63 +        return targetNamespace;
    1.64 +    }
    1.65 +
    1.66 +    public void setTargetNamespaceURI(String s) {
    1.67 +        targetNamespace = s;
    1.68 +    }
    1.69 +
    1.70 +    public void addService(Service service) {
    1.71 +        if (servicesByName.containsKey(service.getName())) {
    1.72 +            throw new ModelException("model.uniqueness");
    1.73 +        }
    1.74 +        services.add(service);
    1.75 +        servicesByName.put(service.getName(), service);
    1.76 +    }
    1.77 +
    1.78 +    public Service getServiceByName(QName name) {
    1.79 +        if (servicesByName.size() != services.size()) {
    1.80 +            initializeServicesByName();
    1.81 +        }
    1.82 +        return (Service)servicesByName.get(name);
    1.83 +    }
    1.84 +
    1.85 +    /* serialization */
    1.86 +    public List<Service> getServices() {
    1.87 +        return services;
    1.88 +    }
    1.89 +
    1.90 +    /* serialization */
    1.91 +    public void setServices(List<Service> l) {
    1.92 +        services = l;
    1.93 +    }
    1.94 +
    1.95 +    private void initializeServicesByName() {
    1.96 +        servicesByName = new HashMap();
    1.97 +        if (services != null) {
    1.98 +            for (Service service : services) {
    1.99 +                if (service.getName() != null &&
   1.100 +                    servicesByName.containsKey(service.getName())) {
   1.101 +
   1.102 +                    throw new ModelException("model.uniqueness");
   1.103 +                }
   1.104 +                servicesByName.put(service.getName(), service);
   1.105 +            }
   1.106 +        }
   1.107 +    }
   1.108 +
   1.109 +    public void addExtraType(AbstractType type) {
   1.110 +        extraTypes.add(type);
   1.111 +    }
   1.112 +
   1.113 +    public Iterator getExtraTypes() {
   1.114 +        return extraTypes.iterator();
   1.115 +    }
   1.116 +
   1.117 +    /* serialization */
   1.118 +    public Set<AbstractType> getExtraTypesSet() {
   1.119 +        return extraTypes;
   1.120 +    }
   1.121 +
   1.122 +    /* serialization */
   1.123 +    public void setExtraTypesSet(Set<AbstractType> s) {
   1.124 +        extraTypes = s;
   1.125 +    }
   1.126 +
   1.127 +
   1.128 +    public void accept(ModelVisitor visitor) throws Exception {
   1.129 +        visitor.visit(this);
   1.130 +    }
   1.131 +
   1.132 +    /**
   1.133 +     * @return the source version
   1.134 +     */
   1.135 +    public String getSource() {
   1.136 +        return source;
   1.137 +    }
   1.138 +
   1.139 +    /**
   1.140 +     * @param string
   1.141 +     */
   1.142 +    public void setSource(String string) {
   1.143 +        source = string;
   1.144 +    }
   1.145 +
   1.146 +    public void setJAXBModel(JAXBModel jaxBModel) {
   1.147 +        this.jaxBModel = jaxBModel;
   1.148 +    }
   1.149 +
   1.150 +    public JAXBModel getJAXBModel() {
   1.151 +        return jaxBModel;
   1.152 +    }
   1.153 +
   1.154 +    private QName name;
   1.155 +    private String targetNamespace;
   1.156 +    private List<Service> services = new ArrayList<Service>();
   1.157 +    private Map<QName, Service> servicesByName = new HashMap<QName, Service>();
   1.158 +    private Set<AbstractType> extraTypes = new HashSet<AbstractType>();
   1.159 +    private String source;
   1.160 +    private JAXBModel jaxBModel = null;
   1.161 +}

mercurial