
com.plenigo.sdk.models.DataAccessScope Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK wrapping plenigo REST-API for easier usage.
package com.plenigo.sdk.models;
/**
*
* Contains all the data access scopes available.
*
*
* Thread safety: This class is thread safe and can be injected.
*
*/
public enum DataAccessScope {
PROFILE("profile");
private String scopeName;
/**
* Constructor with the required scopeName name.
*
* @param name The name of the scopeName
*/
DataAccessScope(String name) {
scopeName = name;
}
/**
* Returns the name of the login scopeName.
*
* @return the name of the login scopeName
*/
public String getName() {
return scopeName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy