argos/dmp-backend/core/src/main/java/eu/eudat/model/referencetypedefinition/AuthenticationConfiguration...

66 lines
1.4 KiB
Java

package eu.eudat.model.referencetypedefinition;
public class AuthenticationConfiguration {
public final static String _authUrl = "authUrl";
private String authUrl;
public final static String _authMethod = "authMethod";
private String authMethod = "GET";
public final static String _authTokenPath = "authTokenPath";
private String authTokenPath;
public final static String _authRequestBody = "authRequestBody";
private String authRequestBody;
public final static String _type = "type";
private String type;
public String getAuthUrl() {
return authUrl;
}
public void setAuthUrl(String authUrl) {
this.authUrl = authUrl;
}
public String getAuthMethod() {
return authMethod;
}
public void setAuthMethod(String authMethod) {
this.authMethod = authMethod;
}
public String getAuthTokenPath() {
return authTokenPath;
}
public void setAuthTokenPath(String authTokenPath) {
this.authTokenPath = authTokenPath;
}
public String getAuthRequestBody() {
return authRequestBody;
}
public void setAuthRequestBody(String authRequestBody) {
this.authRequestBody = authRequestBody;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}