1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portal.dao.orm.jpa;
16  
17  import com.liferay.portal.kernel.dao.orm.Projection;
18  import com.liferay.portal.kernel.dao.orm.ProjectionFactory;
19  import com.liferay.portal.kernel.dao.orm.ProjectionList;
20  
21  /**
22   * <a href="ProjectionFactoryImpl.java.html"><b><i>View Source</i></b></a>
23   *
24   * @author Prashant Dighe
25   * @author Brian Wing Shun Chan
26   */
27  public class ProjectionFactoryImpl implements ProjectionFactory {
28  
29      public Projection alias(Projection projection, String alias) {
30          throw new UnsupportedOperationException();
31      }
32  
33      public Projection avg(String propertyName) {
34          throw new UnsupportedOperationException();
35      }
36  
37      public Projection count(String propertyName) {
38          throw new UnsupportedOperationException();
39      }
40  
41      public Projection countDistinct(String propertyName) {
42          throw new UnsupportedOperationException();
43      }
44  
45      public Projection distinct(Projection projection) {
46          throw new UnsupportedOperationException();
47      }
48  
49      public Projection groupProperty(String propertyName) {
50          throw new UnsupportedOperationException();
51      }
52  
53      public Projection max(String propertyName) {
54          throw new UnsupportedOperationException();
55      }
56  
57      public Projection min(String propertyName) {
58          throw new UnsupportedOperationException();
59      }
60  
61      public ProjectionList projectionList() {
62          throw new UnsupportedOperationException();
63      }
64  
65      public Projection property(String propertyName) {
66          throw new UnsupportedOperationException();
67      }
68  
69      public Projection rowCount() {
70          throw new UnsupportedOperationException();
71      }
72  
73      public Projection sum(String propertyName) {
74          throw new UnsupportedOperationException();
75      }
76  
77  }