diff --git a/adapter/adapter-liteflow/src/main/java/org/dromara/dynamictp/adapter/liteflow/LiteflowDtpAdapter.java b/adapter/adapter-liteflow/src/main/java/org/dromara/dynamictp/adapter/liteflow/LiteflowDtpAdapter.java index 0b2ff71d7..76ee145e4 100644 --- a/adapter/adapter-liteflow/src/main/java/org/dromara/dynamictp/adapter/liteflow/LiteflowDtpAdapter.java +++ b/adapter/adapter-liteflow/src/main/java/org/dromara/dynamictp/adapter/liteflow/LiteflowDtpAdapter.java @@ -36,7 +36,7 @@ * LiteflowDtpAdapter related * * @author yanhom - * @since 1.1.0 + * @since 1.1.9 */ @Slf4j @SuppressWarnings("all") diff --git a/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/LiteflowExampleApplication.java b/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/LiteflowExampleApplication.java index 82cc19646..53bb753ed 100644 --- a/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/LiteflowExampleApplication.java +++ b/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/LiteflowExampleApplication.java @@ -25,7 +25,7 @@ * LiteflowExampleApplication related * * @author yanhom - * @since 1.1.0 + * @since 1.1.9 */ @EnableDynamicTp @SpringBootApplication diff --git a/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/cmp/ACmp.java b/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/cmp/ACmp.java index 92510f2c4..1d72431f0 100644 --- a/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/cmp/ACmp.java +++ b/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/cmp/ACmp.java @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * 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. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package org.dromara.dynamictp.example.cmp; import com.yomahub.liteflow.core.NodeComponent; @@ -7,7 +24,7 @@ * ACmp related * * @author yanhom - * @since 1.1.0 + * @since 1.1.9 */ @Component("a") public class ACmp extends NodeComponent { diff --git a/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/cmp/BCmp.java b/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/cmp/BCmp.java index 6952f7193..686080a4d 100644 --- a/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/cmp/BCmp.java +++ b/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/cmp/BCmp.java @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * 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. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package org.dromara.dynamictp.example.cmp; import com.yomahub.liteflow.core.NodeComponent; @@ -7,7 +24,7 @@ * BCmp related * * @author yanhom - * @since 1.1.0 + * @since 1.1.9 */ @Component("b") public class BCmp extends NodeComponent { diff --git a/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/cmp/CCmp.java b/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/cmp/CCmp.java index bfee07d07..56aae552e 100644 --- a/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/cmp/CCmp.java +++ b/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/cmp/CCmp.java @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * 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. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package org.dromara.dynamictp.example.cmp; import com.yomahub.liteflow.core.NodeComponent; @@ -7,7 +24,7 @@ * CCmp related * * @author yanhom - * @since 1.1.0 + * @since 1.1.9 */ @Component("c") public class CCmp extends NodeComponent { diff --git a/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/controller/TestController.java b/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/controller/TestController.java index 5e6cbc9b3..5bbc2233b 100644 --- a/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/controller/TestController.java +++ b/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/controller/TestController.java @@ -28,7 +28,7 @@ * TestController related * * @author yanhom - * @since 1.1.0 + * @since 1.1.9 */ @Slf4j @RestController diff --git a/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/service/BizService.java b/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/service/BizService.java index 6771362c2..0c5fc4272 100644 --- a/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/service/BizService.java +++ b/example/example-adapter/example-adapter-liteflow/src/main/java/org/dromara/dynamictp/example/service/BizService.java @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * 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. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package org.dromara.dynamictp.example.service; import com.yomahub.liteflow.core.FlowExecutor; @@ -11,7 +28,7 @@ * BizService related * * @author yanhom - * @since 1.1.0 + * @since 1.1.9 */ @Slf4j @Service diff --git a/starter/starter-adapter/starter-adapter-liteflow/src/main/java/org/dromara/dynamictp/starter/adapter/liteflow/autoconfigure/LiteflowTpAutoConfiguration.java b/starter/starter-adapter/starter-adapter-liteflow/src/main/java/org/dromara/dynamictp/starter/adapter/liteflow/autoconfigure/LiteflowTpAutoConfiguration.java index b764ec6ba..079afbb91 100644 --- a/starter/starter-adapter/starter-adapter-liteflow/src/main/java/org/dromara/dynamictp/starter/adapter/liteflow/autoconfigure/LiteflowTpAutoConfiguration.java +++ b/starter/starter-adapter/starter-adapter-liteflow/src/main/java/org/dromara/dynamictp/starter/adapter/liteflow/autoconfigure/LiteflowTpAutoConfiguration.java @@ -30,7 +30,7 @@ * LiteflowTpAutoConfiguration related * * @author yanhom - * @since 1.1.0 + * @since 1.1.9 */ @Configuration @ConditionalOnClass(name = "com.yomahub.liteflow.core.FlowExecutor")