com.formkiq.server.dao.SystemDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of formkiq-server Show documentation
Show all versions of formkiq-server Show documentation
Server-side integration for the FormKiQ ios application
package com.formkiq.server.dao;
import java.util.List;
import com.formkiq.server.domain.SystemProperty;
import com.formkiq.server.domain.type.SystemPropertyDTO;
/**
* Methods for saving /retrieving system properties.
*
*/
public interface SystemDao {
/**
* Delete Key.
* @param key {@link String}
*/
void delete(String key);
/**
* Get Properties.
* @return {@link List}
*/
List getProperties();
/**
* Get Value.
* @param key {@link String}
* @return {@link String}
*/
String getValue(String key);
/**
* Save SystemPropery.
* @param property {@link SystemProperty}
* @return {@link SystemProperty}
*/
SystemProperty save(SystemProperty property);
}