com.greenpepper.server.domain.dao.SystemInfoDao Maven / Gradle / Ivy
package com.greenpepper.server.domain.dao;
import com.greenpepper.server.domain.SystemInfo;
/**
* SystemInfoDao interface.
*
* @author oaouattara
* @version $Id: $Id
*/
public interface SystemInfoDao
{
/**
* getSystemInfo.
*
* @return The SystemInfo
*/
public SystemInfo getSystemInfo();
/**
* Stores the SystemInfo.
*
*
* @param systemInfo a {@link com.greenpepper.server.domain.SystemInfo} object.
*/
public void store(SystemInfo systemInfo);
}