public enum

IdentifierPolicy

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ org.mule.modules.google.IdentifierPolicy

Class Overview

This policy represents which id we want to use to represent each google account.

Summary

Enum Values
IdentifierPolicy  EMAIL  This option means you want to use the account's email address  
IdentifierPolicy  PROFILE  This option means that we want the google profile id. 
[Expand]
Inherited Fields
From class java.lang.Enum
Public Methods
abstract String getId(AbstractGoogleOAuthConnector connector)
static IdentifierPolicy valueOf(String name)
final static IdentifierPolicy[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final IdentifierPolicy EMAIL

This option means you want to use the account's email address

public static final IdentifierPolicy PROFILE

This option means that we want the google profile id. That means, the user's primary key in google's DB. This is a long number represented as a string

Public Methods

public abstract String getId (AbstractGoogleOAuthConnector connector)

Parameters
connector

public static IdentifierPolicy valueOf (String name)

Parameters
name

public static final IdentifierPolicy[] values ()