Package org.apache.axis2.deployment.util
Class BeanExcludeInfo
- java.lang.Object
-
- org.apache.axis2.deployment.util.BeanExcludeInfo
-
public class BeanExcludeInfo extends Object
this class is used to keep the excludeProperties and includePropertes of the given bean when generating the wsdl, and serializing.
-
-
Constructor Summary
Constructors Constructor Description BeanExcludeInfo(String excludeProperties, String includeProperties)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getExcludeProperties()
String
getIncludeProperties()
boolean
isExcludedProperty(String property)
a property is excluded if it ths given in the exclude list but not in include listvoid
setExcludeProperties(String excludeProperties)
void
setIncludeProperties(String includeProperties)
-
-
-
Method Detail
-
getExcludeProperties
public String getExcludeProperties()
-
setExcludeProperties
public void setExcludeProperties(String excludeProperties)
-
getIncludeProperties
public String getIncludeProperties()
-
setIncludeProperties
public void setIncludeProperties(String includeProperties)
-
isExcludedProperty
public boolean isExcludedProperty(String property)
a property is excluded if it ths given in the exclude list but not in include list- Parameters:
property
-- Returns:
- is exclude the property or not
-
-