/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.google.apps.connector.util; /** * @author Matthew Kong */ public class PortletPropsKeys { public static final String GOOGLE_API_RETRY_ATTEMPTS = "google.api.retry.attempts"; public static final String GOOGLE_API_RETRY_INTERVAL = "google.api.retry.interval"; public static final String GOOGLE_API_SERVICE_ACCOUNT_ID = "google.api.service.account.id"; public static final String GOOGLE_API_SERVICE_ACCOUNT_PRIVATE_KEY_P12_FILE = "google.api.service.account.private.key.p12.file"; public static final String GOOGLE_API_SERVICE_ACCOUNT_SCOPES = "google.api.service.account.scopes"; public static final String GOOGLE_API_SERVICE_ACCOUNT_USER = "google.api.service.account.user"; }