summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/sdc/dcae/composition/restmodels/ruleeditor/LogEventAction.java
blob: 49b9ed36c47e2cb96d7ca4bfed5178240996d408 (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.composition.restmodels.ruleeditor;

public class LogEventAction extends BaseAction {

	private LogEvent logEvent;

	private class LogEvent {
		private String title;
	}

	public String getTitle() {
		return logEvent.title;
	}

	public boolean referencesTarget(BaseAction other){
		return false;
	}

	public String strippedTarget(){return "";}
}