* @see org.apache.woden.wsdl20.extensions.ComponentExtensionContext#getProperty(java.lang.String)
*/
public ExtensionProperty getProperty(String propertyName) {
if(WSDLExtensionConstants.PROP_SAFE.equals(propertyName) ) {
BooleanAttr safe = (BooleanAttr) ((WSDLElement)getParent())
.getExtensionAttribute(WSDLExtensionConstants.Q_ATTR_SAFE);
return newExtensionProperty(WSDLExtensionConstants.PROP_SAFE,
safe != null ? safe.getBoolean() : Boolean.FALSE);
} else {
return null; //the specified property name does not exist
}
}