blob: 095e40e0cd057e00c04fe9c55c99cc6aa1847b5b [file] [log] [blame]
package org.eclipse.osee.ote.rest.client;
public interface Progress {
void fail(String string);
void fail(Throwable th);
void setUnitsOfWork(int totalUnitsOfWork);
void setUnitsWorked(int unitsWorked);
void success();
}