/* * Copyright 2010 Werner Guttmann * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.castor.jdo.jpa.processors.classprocessors; import java.lang.annotation.Annotation; import java.lang.reflect.AnnotatedElement; import java.util.Properties; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.castor.core.annotationprocessing.AnnotationTargetException; import org.castor.core.nature.BaseNature; import org.castor.jdo.jpa.annotations.Cache; import org.castor.jdo.jpa.annotations.CacheProperty; import org.castor.jdo.jpa.natures.JPAClassNature; import org.castor.jdo.jpa.processors.BaseJPAAnnotationProcessor; public class JPACacheProcessor extends BaseJPAAnnotationProcessor { private static Log _log = LogFactory.getFactory().getInstance( JPACacheProcessor.class); public <I extends BaseNature, A extends Annotation> boolean processAnnotation( I info, A annotation, AnnotatedElement target) throws AnnotationTargetException { if ((info instanceof JPAClassNature) && (annotation instanceof Cache) && (target instanceof Class<?>) && (target.isAnnotationPresent(Cache.class))) { _log.debug("processing class annotation " + annotation.toString()); JPAClassNature jpaClassNature = (JPAClassNature) info; Cache cache = (Cache) annotation; CacheProperty[] annotatedProperties = cache.value(); Properties plainProperties = new Properties(); for (CacheProperty property : annotatedProperties) { plainProperties.setProperty(property.key(), property.value()); } jpaClassNature.setCacheProperties(plainProperties); return true; } return false; } public Class<? extends Annotation> forAnnotationClass() { return Cache.class; } }