summaryrefslogtreecommitdiffstats
path: root/dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/TargetLocator.java
blob: 9b82f16999f206d586655396759ca4157e61ad21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.onap.sdc.dcae.checker;

import java.net.URI;


public interface TargetLocator {
	
	/** */
	public boolean addSearchPath(URI theURI); 

	/** */
	public boolean addSearchPath(String thePath);

	/** */
	public Iterable<URI> searchPaths();
	
	/** */
	public Target resolve(String theName);

}