234 lines
2.9 KiB
Java
234 lines
2.9 KiB
Java
package com.sforce.soap.metadata;
|
|
|
|
import java.util.EnumSet;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* This is a generated class for the SObject Enterprise API.
|
|
* Do not edit this file, as your changes will be lost.
|
|
*/
|
|
public enum ConnectedAppOauthAccessScope {
|
|
|
|
|
|
|
|
/**
|
|
* Enumeration : Basic
|
|
*/
|
|
Basic("Basic"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Api
|
|
*/
|
|
Api("Api"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Web
|
|
*/
|
|
Web("Web"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Full
|
|
*/
|
|
Full("Full"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Chatter
|
|
*/
|
|
Chatter("Chatter"),
|
|
|
|
|
|
/**
|
|
* Enumeration : CustomApplications
|
|
*/
|
|
CustomApplications("CustomApplications"),
|
|
|
|
|
|
/**
|
|
* Enumeration : RefreshToken
|
|
*/
|
|
RefreshToken("RefreshToken"),
|
|
|
|
|
|
/**
|
|
* Enumeration : OpenID
|
|
*/
|
|
OpenID("OpenID"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Profile
|
|
*/
|
|
Profile("Profile"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Email
|
|
*/
|
|
Email("Email"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Address
|
|
*/
|
|
Address("Address"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Phone
|
|
*/
|
|
Phone("Phone"),
|
|
|
|
|
|
/**
|
|
* Enumeration : OfflineAccess
|
|
*/
|
|
OfflineAccess("OfflineAccess"),
|
|
|
|
|
|
/**
|
|
* Enumeration : CustomPermissions
|
|
*/
|
|
CustomPermissions("CustomPermissions"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Wave
|
|
*/
|
|
Wave("Wave"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Eclair
|
|
*/
|
|
Eclair("Eclair"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Pardot
|
|
*/
|
|
Pardot("Pardot"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Lightning
|
|
*/
|
|
Lightning("Lightning"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Content
|
|
*/
|
|
Content("Content"),
|
|
|
|
|
|
/**
|
|
* Enumeration : CDPIngest
|
|
*/
|
|
CDPIngest("CDPIngest"),
|
|
|
|
|
|
/**
|
|
* Enumeration : CDPProfile
|
|
*/
|
|
CDPProfile("CDPProfile"),
|
|
|
|
|
|
/**
|
|
* Enumeration : CDPQuery
|
|
*/
|
|
CDPQuery("CDPQuery"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Chatbot
|
|
*/
|
|
Chatbot("Chatbot"),
|
|
|
|
|
|
/**
|
|
* Enumeration : CDPSegment
|
|
*/
|
|
CDPSegment("CDPSegment"),
|
|
|
|
|
|
/**
|
|
* Enumeration : CDPIdentityResolution
|
|
*/
|
|
CDPIdentityResolution("CDPIdentityResolution"),
|
|
|
|
|
|
/**
|
|
* Enumeration : CDPCalculatedInsight
|
|
*/
|
|
CDPCalculatedInsight("CDPCalculatedInsight"),
|
|
|
|
|
|
/**
|
|
* Enumeration : ForgotPassword
|
|
*/
|
|
ForgotPassword("ForgotPassword"),
|
|
|
|
|
|
/**
|
|
* Enumeration : UserRegistration
|
|
*/
|
|
UserRegistration("UserRegistration"),
|
|
|
|
|
|
/**
|
|
* Enumeration : SFAP
|
|
*/
|
|
SFAP("SFAP"),
|
|
|
|
|
|
/**
|
|
* Enumeration : Interaction
|
|
*/
|
|
Interaction("Interaction"),
|
|
|
|
|
|
/**
|
|
* Enumeration : CDP
|
|
*/
|
|
CDP("CDP"),
|
|
|
|
|
|
/**
|
|
* Enumeration : EinsteinGPT
|
|
*/
|
|
EinsteinGPT("EinsteinGPT"),
|
|
|
|
|
|
/**
|
|
* Enumeration : PwdlessLogin
|
|
*/
|
|
PwdlessLogin("PwdlessLogin"),
|
|
|
|
;
|
|
|
|
public static Map<String, String> valuesToEnums;
|
|
|
|
static {
|
|
valuesToEnums = new HashMap<String, String>();
|
|
for (ConnectedAppOauthAccessScope e : EnumSet.allOf(ConnectedAppOauthAccessScope.class)) {
|
|
valuesToEnums.put(e.toString(), e.name());
|
|
}
|
|
}
|
|
|
|
private String value;
|
|
|
|
private ConnectedAppOauthAccessScope(String value) {
|
|
this.value = value;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return value;
|
|
}
|
|
}
|