com.bazaarvoice.ostrich.ServiceCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ostrich-core Show documentation
Show all versions of ostrich-core Show documentation
Core classes that form Ostrich
package com.bazaarvoice.ostrich;
import com.bazaarvoice.ostrich.exceptions.ServiceException;
public interface ServiceCallback {
RETURN call(S service) throws ServiceException;
}