io.rny.dropwizard.cmis.config.CmisConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropwizard-cmis Show documentation
Show all versions of dropwizard-cmis Show documentation
Addon bundle for Dropwizard to support CMIS
package io.rny.dropwizard.cmis.config;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.dropwizard.Configuration;
import javax.validation.constraints.NotNull;
/**
* Configuration class for CMIS related settings.
*/
public class CmisConfiguration extends Configuration{
@JsonProperty
@NotNull
private String cmisUrl;
@JsonProperty
@NotNull
private String cmisUser;
@JsonProperty
@NotNull
private String cmisPassword;
public String getCmisUrl() {
return cmisUrl;
}
public String getCmisUser() {
return cmisUser;
}
public String getCmisPassword() {
return cmisPassword;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy