You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Transformation request properties should be made available to the application, not just during Transformation time (already covered in #167), but in Definition time as well.
Properties should be accessible via the following methods in the TransformationTemplate class:
/** * Return the property value associated with the given property name. * Properties are optional and transformation request specific. * Null is returned if this property doesn't exist. * * @param propertyName the property name * @return the property value or null, if property doesn't exist */protectedStringgetProperty(StringpropertyName) {
// TODOreturnnull;
}
/** * Return the property value associated with the given property name. * Properties are optional and transformation request specific. * The specified default value is returned if this property doesn't exist. * * @param propertyName the property name * @return the property value or the default value, if property doesn't exist */protectedStringgetProperty(StringpropertyName, StringdefaultValue) {
// TODOreturnnull;
}
The text was updated successfully, but these errors were encountered:
Transformation request properties should be made available to the application, not just during Transformation time (already covered in #167), but in Definition time as well.
Properties should be accessible via the following methods in the
TransformationTemplate
class:The text was updated successfully, but these errors were encountered: