1 /* 2 * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com 3 * The software in this package is published under the terms of the CPAL v1.0 4 * license, a copy of which has been included with this distribution in the 5 * LICENSE.txt file. 6 */ 7 package org.mule.transport.soap.axis; 8 9 import org.mule.api.lifecycle.InitialisationException; 10 11 import org.apache.axis.handlers.soap.SOAPService; 12 13 /** 14 * <code>AxisInitialisable</code> can be implemented by a Mule component that will 15 * be used as an Axis service to customise the Axis Service object 16 */ 17 public interface AxisInitialisable 18 { 19 public void initialise(SOAPService service) throws InitialisationException; 20 }