1 23 24 package com.sun.appserv.management.config; 25 26 import com.sun.appserv.management.base.XTypes; 27 28 33 public interface TransformationRuleConfig extends NamedConfigElement, Enabled 34 { 35 public static final String J2EE_TYPE = XTypes.TRANSFORMATION_RULE_CONFIG; 36 37 public static final String APPLY_TO_REQUEST = "request"; 38 public static final String APPLY_TO_RESPONSE = "response"; 39 public static final String APPLY_TO_BOTH = "both"; 40 41 44 public String getApplyTo(); 45 46 49 public void setApplyTo( String value ); 50 51 56 public String getRuleFileLocation(); 57 58 64 public void setRuleFileLocation(String name); 65 } | Popular Tags |