Skip to content

Instantly share code, notes, and snippets.

@renanfranca
Created July 23, 2025 14:52
Show Gist options
  • Select an option

  • Save renanfranca/810ef56bfc0b62a2b02c7b3c4e4bb8fa to your computer and use it in GitHub Desktop.

Select an option

Save renanfranca/810ef56bfc0b62a2b02c7b3c4e4bb8fa to your computer and use it in GitHub Desktop.
package tech.jhipster.lite.cli.shared.progressstatus.domain;
public interface ProgressStatus {
void show();
void show(String message);
void update(String message);
void hide();
void success(String message);
void failure(String message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment