package org.onap.usecaseui.intentanalysis.bean.enums;
+import lombok.Getter;
+import lombok.Setter;
+
+@Getter
public enum IntentFunctionType {
INTERNALFUNCTION(0,"internalFunction"),
EXTERNALFUNCTION(1,"externalFunction");
this.type = type;
this.desc = desc;
}
-
- public int getType() {
- return type;
- }
-
- public void setType(int type) {
- this.type = type;
- }
-
- public String getDesc() {
- return desc;
- }
-
- public void setDesc(String desc) {
- this.desc = desc;
- }
}
*/
package org.onap.usecaseui.intentanalysis.bean.enums;
+import lombok.Getter;
+
+@Getter
public enum SupportArea {
SLICING(0, "slicing"),
FEMALE(1, "5g"),
private int type;
private String desc;
- public int getType() {
- return type;
- }
-
- public void setType(int type) {
- this.type = type;
- }
-
- public String getDesc() {
- return desc;
- }
-
- public void setDesc(String desc) {
- this.desc = desc;
- }
SupportArea(int type, String desc) {
this.type = type;
*/
package org.onap.usecaseui.intentanalysis.bean.enums;
+import lombok.Getter;
+
+@Getter
public enum SupportInterface {
//CREATE,DELETE,UPDATE,SEARCH;
CREATE(0,"CREATE"),
this.name = name;
}
- public int getType() {
- return type;
- }
-
- public void setType(int type) {
- this.type = type;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
}
@Override
public void sendToNonIntentHandler() {
- System.out.println("hahha");
}
@Override