private Integer getValueParameter()

in src/main/java/org/apache/geronimo/jcache/simple/cdi/CDIJCacheHelper.java [164:174]


    private Integer getValueParameter(final List<Set<Annotation>> annotations) {
        int idx = 0;
        for (final Set<Annotation> set : annotations) {
            for (final Annotation a : set) {
                if (a.annotationType() == CacheValue.class) {
                    return idx;
                }
            }
        }
        return -1;
    }