| java.lang.Object |
| ↳ |
java.lang.Enum<E extends java.lang.Enum<E>> |
| |
↳ |
org.mule.modules.google.AccessType |
Class Overview
Indicates if your application needs to access a Google API when the user is not present at the browser
Summary
| Enum Values |
| AccessType |
offline |
If your application needs to refresh access tokens when the user is not present at the browser, then use offline. |
| AccessType |
online |
Use this if you want the user to be present at the browser
|
|
[Expand]
Inherited Fields |
From class
java.lang.Enum
|
private
final
String |
name |
|
|
private
final
int |
ordinal |
|
|
|
[Expand]
Inherited Methods |
From class
java.lang.Enum
|
final
Object
|
clone()
|
|
int
|
compareTo(Object arg0)
|
|
final
int
|
compareTo(E arg0)
|
|
final
boolean
|
equals(Object arg0)
|
|
final
void
|
finalize()
|
|
final
Class<E>
|
getDeclaringClass()
|
|
final
int
|
hashCode()
|
|
final
String
|
name()
|
|
final
int
|
ordinal()
|
|
String
|
toString()
|
|
static
<T extends Enum<T>>
T
|
valueOf(Class<T> arg0, String arg1)
|
|
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
From interface
java.lang.Comparable
|
abstract
int
|
compareTo(T arg0)
|
|
Enum Values
public
static
final
AccessType
offline
If your application needs to refresh access tokens when the user is not present at the browser, then use offline.
This will result in your application obtaining a refresh token the first time your application exchanges an authorization code for a user.
public
static
final
AccessType
online
Use this if you want the user to be present at the browser
Public Methods