com.bazaarvoice.ostrich.ServiceEndPoint 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;
public interface ServiceEndPoint {
/** The name of the service. */
String getServiceName();
/**
* An opaque identifier for this end point.
*
* The format of this identifier and information (if any) contained within it is application specific. Ostrich
* does not introspect into this at all.
*/
String getId();
/** An optional payload provided by the user that registered the service. */
String getPayload();
}