com.itelg.spring.xom.marshaller.configuration.EnableXomMarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-xom-marshaller Show documentation
Show all versions of spring-xom-marshaller Show documentation
Spring XML Marshalling with XOM
package com.itelg.spring.xom.marshaller.configuration;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import org.springframework.context.annotation.Import;
@Retention(RUNTIME)
@Target(TYPE)
@Import(SpringXomMarshallerConfiguration.class)
public @interface EnableXomMarshaller
{
}