Interface AccessPlan
- All Known Implementing Classes:
BaseAccessPlan,ComplexAccessPlan,EnhancedPropertyAccessPlan,MapAccessPlan,PropertyAccessPlan
public interface AccessPlan
An interface to make access to resources consistent, regardless of type.
-
Method Summary
Modifier and TypeMethodDescriptionObject[]getProperties(Object object) Gets all of the properties of a bean.voidsetProperties(Object object, Object[] values) Sets all of the properties of a bean.
-
Method Details
-
setProperties
Sets all of the properties of a bean.- Parameters:
object- - the beanvalues- - the property values
-
getProperties
Gets all of the properties of a bean.- Parameters:
object- - the bean- Returns:
- the properties
-