blob: 21e8f35f1ac5743be821384bf0589f55b7c1f7fa [file] [log] [blame]
/*
* Copyright (c) 2020 Kentyou.
* 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:
* Kentyou - initial API and implementation
*/
package org.eclipse.sensinact.gateway.common.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface Property {
public static final String INTEGER = "[0-9]+";
public static final String FLOAT = "[0-9]+\\.[0-9]+";
public static final String STRING = "[a-zA-Z]+";
public static final String ALPHANUMERIC = "[a-zA-Z0-9]+";
public String name() default "";
public boolean mandatory() default true;
public String defaultValue() default "";
public String validationRegex() default "";
}