All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.formkiq.server.dao.SystemDao Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy