View Javadoc
1   package fr.ifremer.dali.decorator;
2   
3   /*
4    * #%L
5    * Dali :: Core
6    * $Id:$
7    * $HeadURL:$
8    * %%
9    * Copyright (C) 2014 - 2015 Ifremer
10   * %%
11   * This program is free software: you can redistribute it and/or modify
12   * it under the terms of the GNU Affero General Public License as published by
13   * the Free Software Foundation, either version 3 of the License, or
14   * (at your option) any later version.
15   * 
16   * This program is distributed in the hope that it will be useful,
17   * but WITHOUT ANY WARRANTY; without even the implied warranty of
18   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19   * GNU General Public License for more details.
20   * 
21   * You should have received a copy of the GNU Affero General Public License
22   * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23   * #L%
24   */
25  
26  /**
27   * <p>DecoratorService interface.</p>
28   *
29   * @author Lionel Touseau <lionel.touseau@e-is.pro>
30   */
31  public interface DecoratorService extends fr.ifremer.quadrige3.core.service.decorator.DecoratorService {
32  
33      /** Constant <code>COLLECTION_SIZE="collectionSize"</code> */
34      String COLLECTION_SIZE = "collectionSize";
35  
36      /** Constant <code>WITH_SYMBOL="withSymbol"</code> */
37      String WITH_SYMBOL = "withSymbol";
38  
39      /** Constant <code>WITH_CITATION="withCitation"</code> */
40      String WITH_CITATION = "withCitation";
41  
42      String WITH_REFERENT = "withReferent";
43  
44      String WITH_CITATION_AND_REFERENT = "withCitationAndReferent";
45  
46      /** Constant <code>NAME_WITH_UNIT="nameWithUnit"</code> */
47      String NAME_WITH_UNIT = "nameWithUnit";
48      String NAME_WITH_ID = "nameWithId";
49  
50      /** Constant <code>DESCRIPTION="description"</code> */
51      String DESCRIPTION = "description";
52      
53      /** Constant <code>DURATION_IN_MINUTES="durationInMinutes"</code> */
54      String DURATION_IN_MINUTES = "durationInMinutes";
55      
56      /** Constant <code>DURATION_IN_DECIMAL_HOURS="durationInDecimalHours"</code> */
57      String DURATION_IN_DECIMAL_HOURS = "durationInDecimalHours";
58  
59      /** Constant <code>TIME_IN_HOURS_MINUTES="timeInHoursMinutes"</code> */
60      String TIME_IN_HOURS_MINUTES = "timeInHoursMinutes";
61      
62      /** Constant <code>CONCAT="concat"</code> */
63      String CONCAT = "concat";
64  
65      /** Constant <code>WITH_COUNT="withCount"</code> */
66      String WITH_COUNT = "withCount";
67  
68  }