String propertyName = AnnotationUtils.getPropertyName(method);
String defaultStrategy = _propertySource.getPropertyValue(DEFAULT_PROPERTY_PERSISTENCE_STRATEGY);
String stategy = p.value().length() == 0 ? defaultStrategy : p.value();
IPropertySpecification pspec = new PropertySpecification();
pspec.setName(propertyName);
pspec.setPersistence(stategy);
pspec.setLocation(location);
pspec.setInitialValue(iv == null ? null : iv.value());
spec.addPropertySpecification(pspec);
}