com.alogient.cameleon.sdk.content.ui.injection.CameleonModel Maven / Gradle / Ivy
The newest version!
package com.alogient.cameleon.sdk.content.ui.injection;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This annotation is used to map a value object to a template.
*
* @author alord
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface CameleonModel {
/**
* @return the name of the template in the data base
*/
String templateName();
/**
* @return is this model indexed
*/
boolean isIndexed() default true;
/**
*
*/
String pageNameIndexField() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy