Project

General

Profile

1
package eu.dnetlib.xml.database;
2

    
3
/**
4
 * most trigger will hold the trigger name in an instance variable.
5
 *
6
 * The Trigger contract requires a getter (getName()). This class implements the setter too.
7
 *
8
 * @author marko
9
 *
10
 */
11
public abstract class AbstractTrigger implements Trigger {
12

    
13
	/**
14
	 * trigger name.
15
	 */
16
	private String name;
17

    
18
	@Override
19
	public String getName() {
20
		return name;
21
	}
22

    
23
	public void setName(final String name) {
24
		this.name = name;
25
	}
26

    
27
}
(1-1/4)