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

com.itelg.spring.xom.unmarshaller.parser.annotation.XPathExpressionMatcher Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
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