All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.com.causecode.annotation.shorthand.ControllerShorthand Maven / Gradle / Ivy

Go to download

A plugin used to manage contents like static pages, menus etc. at one place. Also provides shortened and user friendly urls.

There is a newer version: 2.6.2
Show newest version
package com.causecode.annotation.shorthand;

import java.lang.annotation.Documented;
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 mark any controller's short hand value
 * for creating link. Like c for content controller.
 * @author causecode
 *
 */
@Documented
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface ControllerShorthand {
    String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy