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

angry1980.audio.dao.TrackDAOFakeImpl Maven / Gradle / Ivy

There is a newer version: 0.0.10
Show newest version
package angry1980.audio.dao;

import angry1980.audio.model.Track;

import java.util.Collection;
import java.util.Collections;
import java.util.Optional;

public class TrackDAOFakeImpl implements TrackDAO{

    @Override
    public Track tryToGet(long id) {
        return null;
    }

    @Override
    public Collection findByCluster(long cluster) {
        return Collections.emptyList();
    }

    @Override
    public Collection tryToGetAll() {
        return null;
    }

    @Override
    public Optional create(Track track) {
        return Optional.empty();
    }

    @Override
    public Track tryToCreate(Track track) {
        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy