diff --git a/src/main/java/neatlogic/framework/autoexec/constvalue/AutoexecFormHandler.java b/src/main/java/neatlogic/framework/autoexec/constvalue/AutoexecFormHandler.java new file mode 100644 index 0000000000000000000000000000000000000000..758dbb41fa20ab994e95e21265b70c89abe40a7c --- /dev/null +++ b/src/main/java/neatlogic/framework/autoexec/constvalue/AutoexecFormHandler.java @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2024 深圳极向量科技有限公司 All Rights Reserved. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +package neatlogic.framework.autoexec.constvalue; + +import neatlogic.framework.form.constvalue.IFormHandler; + +public enum AutoexecFormHandler implements IFormHandler { + + FORMRESOURECES("formautoexecservice", "自动化服务组件"), + ; + + private final String handler; + private final String handlerName; + + AutoexecFormHandler(String handler, String handlerName) { + this.handler = handler; + this.handlerName = handlerName; + } + @Override + public String getHandler() { + return handler; + } + + @Override + public String getHandlerName() { + return handlerName; + } +}