com.ning.api.client.action.Finder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ning-api-java Show documentation
Show all versions of ning-api-java Show documentation
Java client library for accessing Ning external API
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;
}