FileDocCategorySizeDatePackage
TransformationRuleImpl.javaAPI DocGlassfish v2 API3566Fri May 04 22:24:42 BST 2007com.sun.enterprise.admin.wsmgmt.config.impl

TransformationRuleImpl

public class TransformationRuleImpl extends Object implements com.sun.enterprise.admin.wsmgmt.config.spi.TransformationRule
This represents transformation rule for a web service end point.

Fields Summary
String
name
String
applyTo
String
fileLoc
boolean
enabled
Constructors Summary
public TransformationRuleImpl(String n, boolean enable, String apply, String loc)

        name = n;
        enabled = enable;
        applyTo = apply;
        fileLoc = loc;
    
public TransformationRuleImpl(com.sun.enterprise.config.serverbeans.TransformationRule tRule)


        name = tRule.getName();
        enabled = tRule.isEnabled();
        applyTo = tRule.getApplyTo();
        fileLoc = tRule.getRuleFileLocation();
    
Methods Summary
public java.lang.StringgetApplyTo()
Returns the value of "Apply-to" attribute

return
the value of "Apply-to" attribute

        return applyTo;
    
public booleangetEnabled()
Returns true, if this transformation rule is enabled

return
true, if this transformation rule is enabled

        return enabled;
    
public java.lang.StringgetName()
Returns the name of the transformation rule

return
the name of the transformation rule

        return name;
    
public java.lang.StringgetRuleFileLocation()
Returns the location of rule file

return
the location of rule file

        return fileLoc;