Merge branch 'release/5.45.0'
[cdmlib.git] / cdmlib-ext / src / main / java / eu / etaxonomy / cdm / ext / ipni / IpniServicePublicationConfigurator.java
1 /**
2 * Copyright (C) 2017 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.cdm.ext.ipni;
10
11 /**
12 * @author a.mueller
13 */
14 public class IpniServicePublicationConfigurator extends IpniServiceConfiguratorBase {
15
16 /**
17 * If true the abbreviation is used as title instead of the title
18 */
19 private boolean useAbbreviationAsTitle = false;
20
21 public void setUseAbbreviationAsTitle(boolean useAbbreviationAsTitle) {
22 this.useAbbreviationAsTitle = useAbbreviationAsTitle;
23 }
24
25 public boolean isUseAbbreviationAsTitle() {
26 return useAbbreviationAsTitle;
27 }
28
29 }