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

org.solovyev.android.db.properties.APropertyDao Maven / Gradle / Ivy

There is a newer version: 1.1.18
Show newest version
package org.solovyev.android.db.properties;

import org.jetbrains.annotations.NotNull;
import org.solovyev.android.AProperty;

import java.util.Collection;
import java.util.List;

/**
 * User: serso
 * Date: 8/20/12
 * Time: 8:39 PM
 */
public interface APropertyDao {

    @NotNull
    List loadPropertiesById(@NotNull Object id);

    void removePropertiesById(@NotNull Object id);

    void insertProperty(@NotNull Object id, @NotNull AProperty property);

    void insertProperties(@NotNull Object id, @NotNull Collection properties);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy