com.iwillfailyou.inspection.badge.Badge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-inspections Show documentation
Show all versions of java-inspections Show documentation
Java inspections library for iwillfailyou
package com.iwillfailyou.inspection.badge;
import com.iwillfailyou.inspection.InspectionException;
import java.net.URL;
public interface Badge {
void send(URL url) throws InspectionException;
void failIfRed() throws InspectionException;
}