Project

General

Profile

1
/**
2
 * 
3
 */
4
package eu.dnetlib.data.collective.transformation.engine.functions;
5

    
6
import org.apache.commons.logging.Log;
7
import org.apache.commons.logging.LogFactory;
8

    
9
/**
10
 * @author jochen
11
 *
12
 */
13
public class Lookup extends AbstractTransformationFunction {
14
	public static final Log log = LogFactory.getLog(Lookup.class);
15
	public static final String paramExprIdentifier = "exprIdentifier";
16
	public static final String paramExprProperty = "exprProperty";
17

    
18
	/**
19
	 * 
20
	 */
21
	public Lookup() {
22
		// TODO Auto-generated constructor stub
23
	}
24

    
25
	/* (non-Javadoc)
26
	 * @see eu.dnetlib.data.collective.transformation.engine.functions.AbstractTransformationFunction#execute()
27
	 */
28
	@Override
29
	String execute() throws ProcessingException {
30
		// TODO Auto-generated method stub
31
		return null;
32
	}
33

    
34
}
(10-10/17)