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

com.ning.api.client.action.Finder Maven / Gradle / Ivy

There is a newer version: 0.5.1
Show newest version
package com.ning.api.client.action;

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

import com.ning.api.client.NingClientException;
import com.ning.api.client.item.ContentItem;
import com.ning.api.client.item.Key;

/**
 * Simple common API for all types of counter objects; does not
 * include per-content-type configuration methods.
 */
public interface Finder>
{
    public C find(String id) throws NingClientException;
    public List find(Collection ids) throws NingClientException;
    public List find(String[] ids) throws NingClientException;
    public C find(Key id) throws NingClientException;
    public List find(Key[] ids) throws NingClientException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy