Project

General

Profile

Download (765 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 *
3
 */
4
package eu.etaxonomy.cdm.ext.ipni;
5

    
6
import org.apache.logging.log4j.LogManager;
7
import org.apache.logging.log4j.Logger;
8

    
9
/**
10
 * @author a.mueller
11
 *
12
 */
13
public class IpniServicePublicationConfigurator extends IpniServiceConfiguratorBase  implements IIpniServiceConfigurator{
14
	public static final Logger logger = LogManager.getLogger(IpniServicePublicationConfigurator.class);
15

    
16
	/**
17
	 * If true the abbreviation is used as title instead of the title
18
	 */
19
	private boolean useAbbreviationAsTitle = false;
20

    
21

    
22

    
23
	public void setUseAbbreviationAsTitle(boolean useAbbreviationAsTitle) {
24
		this.useAbbreviationAsTitle = useAbbreviationAsTitle;
25
	}
26

    
27
	public boolean isUseAbbreviationAsTitle() {
28
		return useAbbreviationAsTitle;
29
	}
30

    
31
}
(7-7/7)