Java tutorial
/** * Copyright (C) 2005-2014 Rivet Logic Corporation. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; version 2 * of the License. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ package com.rivetlogic.portlet; import com.liferay.portal.kernel.exception.SystemException; import com.liferay.portal.kernel.util.GetterUtil; import com.liferay.portal.kernel.util.PrefsPropsUtil; import com.liferay.portal.kernel.util.PropsUtil; /** * The Class GoogleDriveKeys. */ public class GoogleDriveKeys { /** The Constant GOOGLE_DRIVE_CLIENTID. */ private static final String GOOGLE_DRIVE_CLIENTID = "google.drive.clientid"; /** The Constant GOOGLE_DRIVE_DEVKEY. */ private static final String GOOGLE_DRIVE_DEVKEY = "google.drive.devkey"; /** * Gets the client id. * * @param companyId the company id * @return the client id * @throws SystemException the system exception */ public static String getClientId(long companyId) throws SystemException { return PrefsPropsUtil.getString(companyId, GOOGLE_DRIVE_CLIENTID, GetterUtil.getString(PropsUtil.get(GOOGLE_DRIVE_CLIENTID))); } /** * Gets the dev key. * * @param companyId the company id * @return the dev key * @throws SystemException the system exception */ public static String getDevKey(long companyId) throws SystemException { return PrefsPropsUtil.getString(companyId, GOOGLE_DRIVE_DEVKEY, GetterUtil.getString(PropsUtil.get(GOOGLE_DRIVE_DEVKEY))); } }