aboutsummaryrefslogtreecommitdiffstats
path: root/operation-utils/src/main/resources/operationEnum.java_template
blob: 9ec9d3d07619cd2b58392f11605c22ae5d484d3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package $packageName;

import org.openecomp.entity.EcompOperationEnum;

public enum ${name}OperationEnum implements EcompOperationEnum {
<% 
def last 
operations.each { n, v -> last = n }
operations.each { n, v -> %>
  $n${n==last ? ";" : ","}\
<% } %>
}