Skip to content

Instantly share code, notes, and snippets.

@eldermoraes
Created August 31, 2018 12:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eldermoraes/40f4b55aacec6b5751cc7dd768eaa456 to your computer and use it in GitHub Desktop.
Save eldermoraes/40f4b55aacec6b5751cc7dd768eaa456 to your computer and use it in GitHub Desktop.
public class FileEvent {
private File file;
private String mimeType;
public FileEvent() {
}
public FileEvent(File file, String mimeType) {
this.file = file;
this.mimeType = mimeType;
}
public File getFile() {
return file;
}
public void setFile(File file) {
this.file = file;
}
public String getMimeType() {
return mimeType;
}
public void setMimeType(String mimeType) {
this.mimeType = mimeType;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment