*/
private void initCookieValues() {
cookieValues = new HashMap<CookieValue, Field>();
for (Field field : action.getDeclaredFields()) {
if (ReflectUtil.isAnnotationPresentOfField(field, CookieValue.class)) {
CookieValue cookieValue = ReflectUtil.getAnnotationOfField(field, CookieValue.class);
cookieValues.put(cookieValue, field);
}
}
cookieValues = Collections.unmodifiableMap(cookieValues);
}