com.fiskaly.kassensichv.persistence.AndroidDatabaseStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of platform-android Show documentation
Show all versions of platform-android Show documentation
Official Java client for Fiskaly's KassensichV API
The newest version!
package com.fiskaly.kassensichv.persistence;
import java.io.IOException;
import java.util.List;
public class AndroidDatabaseStrategy implements PersistenceStrategy {
public AndroidDatabaseStrategy() {}
@Override
public void persistRequest(Request request) throws IOException {
throw new UnsupportedOperationException("Not implemented");
}
@Override
public List loadRequests() throws IOException {
throw new UnsupportedOperationException("Not implemented");
}
}