diff --git a/src/main/java/neatlogic/framework/autoexec/constvalue/AutoexecFormHandler.java b/src/main/java/neatlogic/framework/autoexec/constvalue/AutoexecFormHandler.java deleted file mode 100644 index 305470d22caadb8746cad65fb6249cc6355b12d4..0000000000000000000000000000000000000000 --- a/src/main/java/neatlogic/framework/autoexec/constvalue/AutoexecFormHandler.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - * - * Copyright (C) 2025 TechSure Co., Ltd. All Rights Reserved. - * This file is part of the NeatLogic software. - * Licensed under the NeatLogic Sustainable Use License (NSUL), Version 4.x – 2025. - * You may use this file only in compliance with the License. - * See the LICENSE file distributed with this work for the full license text. - * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * - */ - -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; - } -}