blob: 9505a0f9f2a3fff59b8d299466a5b78cf6e8e2b3 [file] [log] [blame]
/*
* Copyright (c) 2017 CEA.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* CEA - initial API and implementation
*/
package org.eclipse.sensinact.gateway.generic.parser;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* A XmlElement annotation associates an XML node and a field name
*
* @author <a href="mailto:christophe.munilla@cea.fr">Christophe Munilla</a>
*/
@Inherited
@Target(value = ElementType.TYPE)
@Retention(value = RetentionPolicy.RUNTIME)
@Documented
public @interface XmlElement {
public static final String DEFAULT_ELEMENT_VALUE = "#DEFAULT_ELEMENT#";
public String tag() default DEFAULT_ELEMENT_VALUE;
public String field() default DEFAULT_ELEMENT_VALUE;
}