
uk.co.mruoc.camunda.client.deploy.create.Resource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camunda-rest-client Show documentation
Show all versions of camunda-rest-client Show documentation
Template repo to speed up creating new library projects
The newest version!
package uk.co.mruoc.camunda.client.deploy.create;
import java.nio.file.Path;
import lombok.Data;
import lombok.RequiredArgsConstructor;
@RequiredArgsConstructor
@Data
public class Resource {
private final String name;
private final Path file;
public Resource(Path path) {
this(path.getFileName().toString(), path);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy