com.bazaarvoice.ostrich.ServiceEndPointPredicate 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;
/**
* A predicate interface for {@link ServiceEndPoint} instances.
*
* NOTE: This interface could obviously be replaced by a Guava Predicate, but the goal is to not include any
* 3rd party library classes in the public interface of Ostrich so that's not acceptable.
*/
public interface ServiceEndPointPredicate {
boolean apply(ServiceEndPoint endPoint);
}