{
InjectStateFlag isv = method.getAnnotation(InjectStateFlag.class);
String propertyName = AnnotationUtils.getPropertyName(method);
InjectSpecification inject = new InjectSpecificationImpl();
inject.setType("state-flag");
inject.setProperty(propertyName);
inject.setObject(isv.value());
inject.setLocation(location);
spec.addInjectSpecification(inject);
}