001    /**
002     * Copyright (c) 2000-2010 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.dao.orm.jpa;
016    
017    import com.liferay.portal.kernel.dao.orm.Projection;
018    import com.liferay.portal.kernel.dao.orm.ProjectionFactory;
019    import com.liferay.portal.kernel.dao.orm.ProjectionList;
020    
021    /**
022     * @author Prashant Dighe
023     * @author Brian Wing Shun Chan
024     */
025    public class ProjectionFactoryImpl implements ProjectionFactory {
026    
027            public Projection alias(Projection projection, String alias) {
028                    throw new UnsupportedOperationException();
029            }
030    
031            public Projection avg(String propertyName) {
032                    throw new UnsupportedOperationException();
033            }
034    
035            public Projection count(String propertyName) {
036                    throw new UnsupportedOperationException();
037            }
038    
039            public Projection countDistinct(String propertyName) {
040                    throw new UnsupportedOperationException();
041            }
042    
043            public Projection distinct(Projection projection) {
044                    throw new UnsupportedOperationException();
045            }
046    
047            public Projection groupProperty(String propertyName) {
048                    throw new UnsupportedOperationException();
049            }
050    
051            public Projection max(String propertyName) {
052                    throw new UnsupportedOperationException();
053            }
054    
055            public Projection min(String propertyName) {
056                    throw new UnsupportedOperationException();
057            }
058    
059            public ProjectionList projectionList() {
060                    throw new UnsupportedOperationException();
061            }
062    
063            public Projection property(String propertyName) {
064                    throw new UnsupportedOperationException();
065            }
066    
067            public Projection rowCount() {
068                    throw new UnsupportedOperationException();
069            }
070    
071            public Projection sum(String propertyName) {
072                    throw new UnsupportedOperationException();
073            }
074    
075    }