view src/main/java/de/intevation/lada/exporter/ExportConfig.java @ 607:9a4ec6fb53a7

Added interface and annotation for exporter.
author Raimund Renkert <raimund.renkert@intevation.de>
date Thu, 16 Apr 2015 15:46:51 +0200
parents
children 9e733f44d8b0
line wrap: on
line source
package de.intevation.lada.exporter;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import javax.inject.Qualifier;

@Qualifier
@Retention(RetentionPolicy.RUNTIME)
@Target({
    ElementType.TYPE,
    ElementType.FIELD,
    ElementType.METHOD,
    ElementType.PARAMETER})
public @interface ExportConfig {
    ExportFormat format() default ExportFormat.LAF;
}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)