com.itelg.spring.xom.unmarshaller.parser.annotation.XPathExpressionMatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-xom-unmarshaller Show documentation
Show all versions of spring-xom-unmarshaller Show documentation
Spring XML Unmarshalling with XOM
package com.itelg.spring.xom.unmarshaller.parser.annotation;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Retention(RUNTIME)
@Target(TYPE)
public @interface XPathExpressionMatcher
{
/**
* Expression
*
* @return expression
*/
String value();
/**
* Expression-value (optional)
*
* @return expression-value
*/
String expressionValue() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy