001package com.aispeech.dui.dds.auth; 002 003 004public class AuthType { 005 /** 006 * AISpeech ID auth, OAuth 2.0. 007 */ 008 public static final String AISPEECH_ID = "aispeech_id"; 009 010 /** 011 * API Key + profile Auth. 012 */ 013 public static final String PROFILE = "profile"; 014}