| Class | Line # | Actions | |||||
|---|---|---|---|---|---|---|---|
| XWikiCriteriaServiceImpl | 25 | 5 | 0% | 6 | 6 |
| 1 | /* | |
| 2 | * See the NOTICE file distributed with this work for additional | |
| 3 | * information regarding copyright ownership. | |
| 4 | * | |
| 5 | * This is free software; you can redistribute it and/or modify it | |
| 6 | * under the terms of the GNU Lesser General Public License as | |
| 7 | * published by the Free Software Foundation; either version 2.1 of | |
| 8 | * the License, or (at your option) any later version. | |
| 9 | * | |
| 10 | * This software is distributed in the hope that it will be useful, | |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 13 | * Lesser General Public License for more details. | |
| 14 | * | |
| 15 | * You should have received a copy of the GNU Lesser General Public | |
| 16 | * License along with this software; if not, write to the Free | |
| 17 | * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | |
| 18 | * 02110-1301 USA, or see the FSF site: http://www.fsf.org. | |
| 19 | */ | |
| 20 | package com.xpn.xwiki.criteria.impl; | |
| 21 | ||
| 22 | import com.xpn.xwiki.XWikiContext; | |
| 23 | import com.xpn.xwiki.criteria.api.XWikiCriteriaService; | |
| 24 | ||
| 25 | public class XWikiCriteriaServiceImpl implements XWikiCriteriaService | |
| 26 | { | |
| 27 | 87 | public XWikiCriteriaServiceImpl(XWikiContext context) |
| 28 | { | |
| 29 | } | |
| 30 | ||
| 31 | 0 | @Override |
| 32 | public DurationFactory getDurationFactory() | |
| 33 | { | |
| 34 | 0 | return new DurationFactory(); |
| 35 | } | |
| 36 | ||
| 37 | 0 | @Override |
| 38 | public PeriodFactory getPeriodFactory() | |
| 39 | { | |
| 40 | 0 | return new PeriodFactory(); |
| 41 | } | |
| 42 | ||
| 43 | 7 | @Override |
| 44 | public RangeFactory getRangeFactory() | |
| 45 | { | |
| 46 | 7 | return new RangeFactory(); |
| 47 | } | |
| 48 | ||
| 49 | 7 | @Override |
| 50 | public RevisionCriteriaFactory getRevisionCriteriaFactory() | |
| 51 | { | |
| 52 | 7 | return new RevisionCriteriaFactory(); |
| 53 | } | |
| 54 | ||
| 55 | 0 | @Override |
| 56 | public ScopeFactory getScopeFactory() | |
| 57 | { | |
| 58 | 0 | return new ScopeFactory(); |
| 59 | } | |
| 60 | } |