/** * 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.portal.security.pacl.checker; import com.liferay.portal.kernel.log.Log; import com.liferay.portal.kernel.log.LogFactoryUtil; import com.liferay.portal.kernel.util.Validator; import java.security.Permission; /** * @author Brian Wing Shun Chan */ public class DefaultRejectChecker extends BaseChecker { @Override public void afterPropertiesSet() { } @Override public boolean implies(Permission permission) { if (_log.isDebugEnabled()) { Thread.dumpStack(); } Class<?> clazz = permission.getClass(); String name = permission.getName(); String actions = permission.getActions(); if (Validator.isNotNull(actions)) { logSecurityException( _log, "Permission " + clazz.getName() + " attempted to " + name + " on " + actions); } else { logSecurityException( _log, "Permission " + clazz.getName() + " attempted to " + name); } return false; } private static final Log _log = LogFactoryUtil.getLog( DefaultRejectChecker.class); }