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

com.scaleset.search.dynamo.Mapping Maven / Gradle / Ivy

There is a newer version: 0.24.0
Show newest version
package com.scaleset.search.dynamo;

import com.amazonaws.services.dynamodbv2.model.AttributeValue;

import java.util.Map;

public interface Mapping {

    Map entityToKey(T obj) throws Exception;

    T fromRow(Map row) throws Exception;

    Map idToKey(ID id) throws Exception;

    Map toRow(T obj) throws Exception;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy