Project

General

Profile

1
package eu.dnetlib.validator.service.impls.rules;
2

    
3
import java.util.Properties;
4

    
5
import eu.dnetlib.validator.engine.data.Rule;
6

    
7
/**
8
 * Represents a rule that checks if an object has a value that is a valid URL
9
 * @author Manos Karvounis
10
 *
11
 */
12
public abstract class ValidUrlRule extends Rule {
13

    
14
	private static final long serialVersionUID = 1943143552438932457L;
15
	
16
	public ValidUrlRule(Properties pros, int id) {
17
		super(pros, id);
18
	}
19

    
20
}
(5-5/6)