de.ppi.deepsampler.persistence.model.PersistentBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deepsampler-persistence Show documentation
Show all versions of deepsampler-persistence Show documentation
This module is the core of the persistence api in DeepSampler.
/*
* Copyright 2022 PPI AG (Hamburg, Germany)
* This program is made available under the terms of the MIT License.
*/
package de.ppi.deepsampler.persistence.model;
import java.util.Map;
public interface PersistentBean {
void setValues(Map values);
Map getValues();
Object getValue(String key);
}