001    /**
002     * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.security.permission;
016    
017    /**
018     * @author Raymond Augé
019     */
020    public interface InlineSQLHelper {
021    
022            public boolean isEnabled();
023    
024            public boolean isEnabled(long groupId);
025    
026            public boolean isEnabled(long[] groupIds);
027    
028            public String replacePermissionCheck(
029                    String sql, String className, String classPKField, String userIdField);
030    
031            public String replacePermissionCheck(
032                    String sql, String className, String classPKField, String userIdField,
033                    long groupId);
034    
035            public String replacePermissionCheck(
036                    String sql, String className, String classPKField, String userIdField,
037                    long groupId, String bridgeJoin);
038    
039            public String replacePermissionCheck(
040                    String sql, String className, String classPKField, String userIdField,
041                    long[] groupIds);
042    
043            public String replacePermissionCheck(
044                    String sql, String className, String classPKField, String userIdField,
045                    long[] groupIds, String bridgeJoin);
046    
047            public String replacePermissionCheck(
048                    String sql, String className, String classPKField, String userIdField,
049                    String bridgeJoin);
050    
051    }