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