blob: 0185daadc44b4b7803672d28af6a70df239ee3a1 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.axis2.mtompolicy;
import java.util.ArrayList;
import java.util.List;
import org.apache.axis2.AxisFault;
import org.apache.axis2.Constants;
import org.apache.axis2.description.AxisBinding;
import org.apache.axis2.description.AxisDescription;
import org.apache.axis2.description.AxisEndpoint;
import org.apache.axis2.description.AxisService;
import org.apache.axis2.description.Parameter;
import org.apache.axis2.description.WSDL2Constants;
import org.apache.axis2.description.java2wsdl.Java2WSDLConstants;
import org.apache.axis2.policy.model.MTOM10Assertion;
import org.apache.axis2.policy.model.MTOMAssertion;
import org.apache.axis2.util.PolicyUtil;
import org.apache.neethi.Assertion;
import org.apache.neethi.Policy;
public class Utils {
private static final String MTOM_ASSERTION_APPLIED = "MTOM_ASSERTION_APPLIED";
public static MTOMAssertion getMTOMAssertion(AxisDescription axisDescription) {
if (axisDescription == null) {
return null;
}
ArrayList policyList = new ArrayList();
policyList.addAll(axisDescription.getPolicySubject()
.getAttachedPolicyComponents());
Policy policy = PolicyUtil.getMergedPolicy(policyList, axisDescription);
if (policy == null) {
return null;
}
List<Assertion> list = (List<Assertion>) policy.getAlternatives()
.next();
for (Assertion assertion : list) {
if (assertion instanceof MTOMAssertion) {
return (MTOMAssertion) assertion;
}
}
return null;
}
public static AxisService locateAxisService(AxisDescription axisDescription) {
if (axisDescription == null || axisDescription instanceof AxisService) {
return (AxisService) axisDescription;
} else {
return locateAxisService(axisDescription.getParent());
}
}
public static Policy getMTOMPolicy(Parameter param) {
if (param == null) {
return null;
}
MTOMAssertion mtom10;
if (Constants.VALUE_TRUE.equals(param.getValue())) {
mtom10 = new MTOM10Assertion();
} else if (Constants.VALUE_OPTIONAL.equals(param.getValue())) {
mtom10 = new MTOM10Assertion();
mtom10.setOptional(true);
} else {
return null;
}
Policy policy = new Policy();
policy.addAssertion(mtom10);
return policy;
}
public static void applyPolicyToSOAPBindings(AxisService axisService,
Policy policy) throws AxisFault {
Parameter param = axisService.getParameter(MTOM_ASSERTION_APPLIED);
if ( policy == null || (param != null && Constants.VALUE_TRUE.equals(param.getValue()))) {
return;
}
for (Object obj : axisService.getEndpoints().values()) {
AxisEndpoint endpoint = (AxisEndpoint) obj;
AxisBinding binding = endpoint.getBinding();
if (Java2WSDLConstants.TRANSPORT_URI.equals(binding.getType())
|| WSDL2Constants.URI_WSDL2_SOAP.equals(binding.getType())) {
binding.getPolicySubject().attachPolicy(policy);
}
}
axisService
.addParameter("MTOM_ASSERTION_APPLIED", Constants.VALUE_TRUE);
}
}