com.markwolgin.amtrak.data.EnableAmtrakData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data Show documentation
Show all versions of data Show documentation
Provides an interface to Amtrak's Station and Train data.
The newest version!
package com.markwolgin.amtrak.data;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import com.markwolgin.amtrak.data.util.FileUtil;
import com.markwolgin.amtrak.data.util.ZipUtil;
import com.markwolgin.amtrak.data.properties.AmtrakProperties;
import org.springframework.context.annotation.Import;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Import({
FileUtil.class,
ZipUtil.class,
AmtrakProperties.class})
public @interface EnableAmtrakData {
}