summaryrefslogtreecommitdiffstats
path: root/dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/TargetInfo.java
blob: 480b6a87b9b28618cccbef5ded9ef05a4cb0ea2d (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.util.Set;


/**
 * Exposes target properties. How they are obtained/calculated not of importance here.
 */
public interface TargetInfo {
	
	/** */
	public Set<String>	entryNames();

	/** */
	public boolean	hasEntry(String theName);

	/** */
	public Object	getEntry(String theName);

}