
com.belladati.sdk.form.Form Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-api Show documentation
Show all versions of sdk-api Show documentation
The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the SDK's interface definitions.
package com.belladati.sdk.form;
import java.util.List;
import com.belladati.sdk.util.Resource;
/**
* Import form used in BellaDati Data Collecting Module to import data into BellaDati.
* @see Data Collection Module
*
* @author Lubomir Elko
*/
public interface Form extends Resource {
/**
* Returns the flag indicating if timestamp should be recorded for this form.
*
* @return the flag indicating if timestamp should be recorded for this form
*/
boolean getRecordTimestamp();
/**
* Returns a list of all form elements located in this form. You can use these
* elements to import data into BellaDati.
*
* @return a list of all form elements located in this form
*/
List getElements();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy