001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
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    }