
io.paradoxical.dropwizard.swagger.AssetsDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropwizard-swagger Show documentation
Show all versions of dropwizard-swagger Show documentation
Swagger managment on the admin resource for dropwizard
package io.paradoxical.dropwizard.swagger;
import lombok.Builder;
import lombok.NonNull;
import lombok.Value;
import lombok.experimental.Accessors;
import javax.annotation.Nonnull;
@Value
@Builder(toBuilder = true)
@Accessors(fluent = true)
public class AssetsDefinition {
@Nonnull
@NonNull
private final String resourcePath;
@Nonnull
@NonNull
private final String uriPath;
private final String indexFile;
@Nonnull
@NonNull
private final String assetsName;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy