aboutsummaryrefslogtreecommitdiffstats
path: root/etc/DmaapConfig.json
blob: 8586a9bd67bbb441866f3afb8dea02d17ce1d6f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
	"channels": [
		{
			"name": "sec_measurement",
			"cambria.topic": "unauthenticated.SEC_MEASUREMENT_OUTPUT",
			"class": "HpCambriaOutputStream",
			"stripHpId": "true",
			"type": "out",
			"cambria.hosts": "onap.dmaap.org"
		},
		{
			"name": "sec_fault",
			"cambria.topic": "unauthenticated.SEC_FAULT_OUTPUT",
			"class": "HpCambriaOutputStream",
			"stripHpId": "true",
			"type": "out",
			"cambria.hosts": "onap.dmaap.org"
		}
	]
}
Enumeration of the Update Type that has occurred in the <code>PDPNotification</code> of * {@link org.onap.policy.api.PDPNotification}. * * @version 0.1 */ public enum NotificationType { /** * Indicates that a policy has been updated. */ UPDATE("update"), /** * Indicates that a policy has been removed. */ REMOVE("remove"), /** * Indicates that both update and removal of policy events has occurred. */ BOTH("both"); private String name; NotificationType(String name) { this.name = name; } /** * Returns the <code>String</code> format of the Type for this <code>UpdateType</code>. * * @return the <code>String</code> Type of <code>UpdateType</code> */ @Override public String toString() { return this.name; } }