/** * Copyright (c) 2011-2014, OpenIoT * * This file is part of OpenIoT. * * OpenIoT is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, version 3 of the License. * * OpenIoT is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with OpenIoT. If not, see <http://www.gnu.org/licenses/>. * * Contact: OpenIoT mailto: info@openiot.eu */ package org.openiot.ui.request.commons.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.openiot.ui.request.commons.nodes.enums.PropertyType; /** * * @author Achilleas Anagnostopoulos (aanag) email: aanag@sensap.eu */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public @interface NodeProperty { /** * The type of property */ PropertyType type(); /** * NodeProperty name */ String name(); /** * The property value type */ Class<?> javaType(); /** * Allowed values */ String[] allowedValues() default {}; /** * Flag whether this field has to be filled in */ boolean required(); }