1 16 package org.apache.axis.features; 17 18 import org.apache.axis.AxisFault; 19 20 30 public interface FeatureEnabled { 31 32 36 public void enableFeature(String featureId) 37 throws AxisFault; 38 39 43 public void disableFeature(String featureId) 44 throws AxisFault; 45 46 51 public boolean isFeatureEnabled(String featureId) 52 throws AxisFault; 53 54 58 public String [] getSupportedFeatures() 59 throws AxisFault; 60 61 } 62 | Popular Tags |