dev.fitko.fitconnect.api.domain.model.attachment.Fragment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
Library that provides client access to the FIT-Connect api-endpoints for sending, subscribing and
routing
The newest version!
package dev.fitko.fitconnect.api.domain.model.attachment;
import lombok.AllArgsConstructor;
import lombok.Data;
import java.io.File;
import java.util.UUID;
@Data
@AllArgsConstructor
public class Fragment {
private UUID fragmentId;
private String authTag;
private File file;
public Fragment(UUID fragmentId, File file) {
this.fragmentId = fragmentId;
this.file = file;
}
}