
edu.stanford.protege.webprotege.filesub.MinioProperties Maven / Gradle / Ivy
package edu.stanford.protege.webprotege.filesub;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 2021-11-11
*/
@Configuration
@ConfigurationProperties(prefix = "webprotege.minio")
public class MinioProperties {
private String accessKey;
private String secretKey;
private String endPoint;
private String bucketName;
public void setAccessKey(String accessKey) {
this.accessKey = accessKey;
}
public void setSecretKey(String secretKey) {
this.secretKey = secretKey;
}
public void setEndPoint(String endPoint) {
this.endPoint = endPoint;
}
public String getAccessKey() {
return accessKey;
}
public String getSecretKey() {
return secretKey;
}
public String getEndPoint() {
return endPoint;
}
public void setBucketName(String bucketName) {
this.bucketName = bucketName;
}
public String getBucketName() {
return bucketName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy