All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.plenigo.sdk.models.DataAccessScope Maven / Gradle / Ivy

There is a newer version: 1.7.2
Show newest version
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