001 /*
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements. See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License. You may obtain a copy of the License at
008 *
009 * http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017 package org.apache.servicemix.soap.bindings.soap.impl;
018
019 import java.util.List;
020
021 import org.apache.servicemix.soap.bindings.http.model.Wsdl2HttpHeader;
022 import org.apache.servicemix.soap.bindings.soap.model.wsdl2.Wsdl2SoapHeader;
023 import org.apache.servicemix.soap.bindings.soap.model.wsdl2.Wsdl2SoapMessage;
024 import org.apache.servicemix.soap.bindings.soap.model.wsdl2.Wsdl2SoapModule;
025 import org.apache.servicemix.soap.core.model.AbstractWsdl2Message;
026
027 public class Wsdl2SoapMessageImpl extends AbstractWsdl2Message implements Wsdl2SoapMessage {
028
029 private List<Wsdl2SoapModule> soapModules;
030 private List<Wsdl2SoapHeader> soapHeaders;
031 private List<Wsdl2HttpHeader> httpHeaders;
032
033 /**
034 * @return the soapModules
035 */
036 public List<Wsdl2SoapModule> getSoapModules() {
037 return soapModules;
038 }
039
040 /**
041 * @param soapModules the soapModules to set
042 */
043 public void setSoapModules(List<Wsdl2SoapModule> soapModules) {
044 this.soapModules = soapModules;
045 }
046
047 /**
048 * @return the soapHeaders
049 */
050 public List<Wsdl2SoapHeader> getSoapHeaders() {
051 return soapHeaders;
052 }
053
054 /**
055 * @param soapHeaders the soapHeaders to set
056 */
057 public void setSoapHeaders(List<Wsdl2SoapHeader> soapHeaders) {
058 this.soapHeaders = soapHeaders;
059 }
060
061 /**
062 * @return the httpHeaders
063 */
064 public List<Wsdl2HttpHeader> getHttpHeaders() {
065 return httpHeaders;
066 }
067
068 /**
069 * @param httpHeaders the httpHeaders to set
070 */
071 public void setHttpHeaders(List<Wsdl2HttpHeader> httpHeaders) {
072 this.httpHeaders = httpHeaders;
073 }
074
075 }