protocolNameToTypeMap property

LazyMember<Map<String, OutlookProtocolType>> protocolNameToTypeMap
getter/setter pair
Map Outlook protocol name to type.

Implementation

/* private */
static LazyMember<Map<String, OutlookProtocolType>> protocolNameToTypeMap =
    new LazyMember<Map<String, OutlookProtocolType>>(() {
  Map<String, OutlookProtocolType> results =
      new Map<String, OutlookProtocolType>();
  results[OutlookProtocol._EXCH] = OutlookProtocolType.Rpc;
  results[OutlookProtocol._EXPR] = OutlookProtocolType.RpcOverHttp;
  results[OutlookProtocol._WEB] = OutlookProtocolType.Web;
  return results;
});