From b53ea7e5fe25b845b2d5489c3f248682a4aa5b37 Mon Sep 17 00:00:00 2001 From: guozhiqi Date: Wed, 1 Feb 2023 10:27:56 +0800 Subject: [PATCH 01/10] =?UTF-8?q?=E5=85=83=E6=95=B0=E6=8D=AE=E4=BF=9D?= =?UTF-8?q?=E5=AD=98=E5=89=8D=E5=A2=9E=E5=8A=A0=E6=98=AF=E5=90=A6=E7=A7=BB?= =?UTF-8?q?=E9=99=A4=E6=97=A7=E6=96=87=E4=BB=B6=E7=AD=96=E7=95=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../web/common/metadata/MetadataUtility.java | 28 +++++++++++++++++-- .../replication/FormMetadataCmdManager.java | 4 +-- .../replication/FormMetadataReplicator.java | 7 +++-- .../replication/FormMetadataSmManager.java | 2 +- .../replication/FormMetadataVoManager.java | 2 +- 5 files changed, 33 insertions(+), 10 deletions(-) diff --git a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java index e9f873df..875a21c2 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java @@ -202,7 +202,11 @@ public final class MetadataUtility { return getMetadataWithEnvironment(metadataId, ExecuteEnvironment.Runtime, false); } - + /** + * 创建表单元数据 如果已经存在 是否执行删除操作 避免创建元数据时由于已存在 ,无法进行创建的问题 + * + * @param metadata 待保存元数据 + */ public void createMetadata(GspMetadata metadata) { MetadataService metadataService = SpringBeanUtils.getBean(MetadataService.class); metadataService.createMetadata(metadata.getRelativePath(), metadata); @@ -211,8 +215,9 @@ public final class MetadataUtility { /** * 删除对应的元数据物理文件 - * @param metadataPath 元数据所属路径 - * @param metadataFileName 元数据对应的文件名称 + * + * @param metadataPath 元数据所属路径 + * @param metadataFileName 元数据对应的文件名称 */ public void deleteMetadataInDisk(String metadataPath, String metadataFileName) { if (StringUtility.isNullOrEmpty(metadataFileName)) { @@ -320,8 +325,25 @@ public final class MetadataUtility { return currentProject.getMetadataProjectName().toLowerCase(); } + /** + * 元数据保存 + * @param metadata + */ public void saveMetadata(GspMetadata metadata) { + this.saveMetadata(metadata, false); + } + + /** + * 元数据保存 如果元数据已经存在,则先进行删除旧的元数据文件 + * @param metadata + * @param deleteIfExists + */ + public void saveMetadata(GspMetadata metadata, boolean deleteIfExists) { MetadataService metadataService = SpringBeanUtils.getBean(MetadataService.class); + if (deleteIfExists) { + // 如果存在则删除 那么先将对应元数据删除 + metadataService.deleteMetadata(metadata.getRelativePath(), metadata.getHeader().getFileName()); + } metadataService.saveMetadata(metadata, Paths.get(metadata.getRelativePath()).resolve(metadata.getHeader().getFileName()).toString()); } diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java index dc7cdd51..a0a8ec00 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java @@ -80,7 +80,7 @@ public class FormMetadataCmdManager { MetadataUtility.getInstance().getReferenceComponentMetadata(replicateWebCommandMetadata, FormMetadataCmdManager::UpdateWebComponentMetadata, context); // 保存命令元数据 - MetadataUtility.getInstance().saveMetadata(replicateWebCommandMetadata); + MetadataUtility.getInstance().saveMetadata(replicateWebCommandMetadata,true); } } } @@ -172,7 +172,7 @@ public class FormMetadataCmdManager { WebComponentMetadata replicateComponentMetadataContent = (WebComponentMetadata) replicateWebComponentMetadata.getContent(); replicateComponentMetadataContent.setSource(targetPath); - metadataUtility.saveMetadata(replicateWebComponentMetadata); + metadataUtility.saveMetadata(replicateWebComponentMetadata,true); } private static boolean CheckIfMetadataFileExits(GspMetadata metadata) { diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java index 7a06138d..33e0e360 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java @@ -22,9 +22,10 @@ public class FormMetadataReplicator { /** * 表单复制接口,目前仅支持同一个BO内复制 - * - * @param sourceMetadataId 待复制元数据id - * @param sourceMetadataRelativePath 待复制元数据路径 + * 针对表单元数据复制,需要判断其是否已存在,如果已经存在,那么不允许其进行复制操作 + * 如果是表单元数据关联的其他元数据,那么不判断其是否已存在,如果已存在,那么执行先删除操作 + * @param sourceFormMetadata 待复制表单元数据 + * @param sourceProjectName 待复制表单元数据所属工程名称 * @param targetMetadataCode 目标元数据编号 * @param targetMetadataName 目标元数据名称 * @param targetProjectName 目标元数据所在工程名称 diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java index dcfe97b4..33db9fff 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java @@ -41,7 +41,7 @@ class FormMetadataSmManager { GspMetadata replicateStateMachineMetadata = MetadataCloneManager.cloneMetadata(stateMachineMetadataReplicationContext); MetadataUtility.getInstance().createMetadata(replicateStateMachineMetadata); - MetadataUtility.getInstance().saveMetadata(replicateStateMachineMetadata); + MetadataUtility.getInstance().saveMetadata(replicateStateMachineMetadata,true); //原stateMachineId stateMachineId = replicateStateMachineMetadata.getHeader().getId(); // 更新表单内容statemachine diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java index 8e246b00..17e12066 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java @@ -51,7 +51,7 @@ class FormMetadataVoManager { MetadataUtility.getInstance().createMetadata(replicateViewObjectMetadata); - MetadataUtility.getInstance().saveMetadata(replicateViewObjectMetadata); + MetadataUtility.getInstance().saveMetadata(replicateViewObjectMetadata, true); // 更新表单内容关联VO schema.put("id", replicateViewObjectMetadata.getHeader().getId()); -- Gitee From da88fd59bf81c17529c6e453bf73a46619a08676 Mon Sep 17 00:00:00 2001 From: guozhiqi Date: Wed, 1 Feb 2023 10:48:45 +0800 Subject: [PATCH 02/10] =?UTF-8?q?=E5=85=83=E6=95=B0=E6=8D=AE=E4=BF=9D?= =?UTF-8?q?=E5=AD=98=E5=89=8D=E5=A2=9E=E5=8A=A0=E6=98=AF=E5=90=A6=E7=A7=BB?= =?UTF-8?q?=E9=99=A4=E6=97=A7=E6=96=87=E4=BB=B6=E7=AD=96=E7=95=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../web/common/metadata/MetadataUtility.java | 27 ++++++++++--------- .../replication/FormMetadataCmdManager.java | 8 +++--- .../replication/FormMetadataSmManager.java | 4 +-- .../replication/FormMetadataVoManager.java | 4 +-- 4 files changed, 22 insertions(+), 21 deletions(-) diff --git a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java index 875a21c2..e80a3a36 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java @@ -208,7 +208,19 @@ public final class MetadataUtility { * @param metadata 待保存元数据 */ public void createMetadata(GspMetadata metadata) { + this.createMetadata(metadata, false); + } + + /** + * 创建表单元数据 如果已经存在 是否执行删除操作 避免创建元数据时由于已存在 ,无法进行创建的问题 + * + * @param metadata 待保存元数据 + */ + public void createMetadata(GspMetadata metadata, boolean deleteIfExists) { MetadataService metadataService = SpringBeanUtils.getBean(MetadataService.class); + if (deleteIfExists) { + metadataService.deleteMetadata(metadata.getRelativePath(), metadata.getHeader().getFileName()); + } metadataService.createMetadata(metadata.getRelativePath(), metadata); } @@ -325,25 +337,14 @@ public final class MetadataUtility { return currentProject.getMetadataProjectName().toLowerCase(); } - /** - * 元数据保存 - * @param metadata - */ - public void saveMetadata(GspMetadata metadata) { - this.saveMetadata(metadata, false); - } - /** * 元数据保存 如果元数据已经存在,则先进行删除旧的元数据文件 + * * @param metadata * @param deleteIfExists */ - public void saveMetadata(GspMetadata metadata, boolean deleteIfExists) { + public void saveMetadata(GspMetadata metadata) { MetadataService metadataService = SpringBeanUtils.getBean(MetadataService.class); - if (deleteIfExists) { - // 如果存在则删除 那么先将对应元数据删除 - metadataService.deleteMetadata(metadata.getRelativePath(), metadata.getHeader().getFileName()); - } metadataService.saveMetadata(metadata, Paths.get(metadata.getRelativePath()).resolve(metadata.getHeader().getFileName()).toString()); } diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java index a0a8ec00..d209caf6 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java @@ -59,7 +59,7 @@ public class FormMetadataCmdManager { webCommandMetadataReplicationContext.setTargetMetadataDescription(webCommandMetadataDto); GspMetadata replicateWebCommandMetadata = MetadataCloneManager.cloneMetadata(webCommandMetadataReplicationContext); - MetadataUtility.getInstance().createMetadata(replicateWebCommandMetadata); + MetadataUtility.getInstance().createMetadata(replicateWebCommandMetadata,true); // 更新表单内容关联webcmd String oldWebCmdId = webcmd.get("id").toString(); @@ -80,7 +80,7 @@ public class FormMetadataCmdManager { MetadataUtility.getInstance().getReferenceComponentMetadata(replicateWebCommandMetadata, FormMetadataCmdManager::UpdateWebComponentMetadata, context); // 保存命令元数据 - MetadataUtility.getInstance().saveMetadata(replicateWebCommandMetadata,true); + MetadataUtility.getInstance().saveMetadata(replicateWebCommandMetadata); } } } @@ -125,7 +125,7 @@ public class FormMetadataCmdManager { // TODO:提取RelativePath赋值操作,这样就无需先clone元数据再执行是否存在校验 if (!CheckIfMetadataFileExits(replicateWebComponentMetadata)) { - metadataUtility.createMetadata(replicateWebComponentMetadata); + metadataUtility.createMetadata(replicateWebComponentMetadata,true); } else { replicateWebComponentMetadata = metadataUtility.getMetadata(replicateWebComponentMetadata.getHeader().getFileName(), replicateWebComponentMetadata.getRelativePath()); } @@ -172,7 +172,7 @@ public class FormMetadataCmdManager { WebComponentMetadata replicateComponentMetadataContent = (WebComponentMetadata) replicateWebComponentMetadata.getContent(); replicateComponentMetadataContent.setSource(targetPath); - metadataUtility.saveMetadata(replicateWebComponentMetadata,true); + metadataUtility.saveMetadata(replicateWebComponentMetadata); } private static boolean CheckIfMetadataFileExits(GspMetadata metadata) { diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java index 33db9fff..a776f933 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java @@ -39,9 +39,9 @@ class FormMetadataSmManager { stateMachineMetadataReplicationContext.setTargetMetadataDescription(stateMachineMetadataDto); GspMetadata replicateStateMachineMetadata = MetadataCloneManager.cloneMetadata(stateMachineMetadataReplicationContext); - MetadataUtility.getInstance().createMetadata(replicateStateMachineMetadata); + MetadataUtility.getInstance().createMetadata(replicateStateMachineMetadata,true); - MetadataUtility.getInstance().saveMetadata(replicateStateMachineMetadata,true); + MetadataUtility.getInstance().saveMetadata(replicateStateMachineMetadata); //原stateMachineId stateMachineId = replicateStateMachineMetadata.getHeader().getId(); // 更新表单内容statemachine diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java index 17e12066..843ac773 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java @@ -49,9 +49,9 @@ class FormMetadataVoManager { // 复制vo元数据 GspMetadata replicateViewObjectMetadata = MetadataCloneManager.cloneMetadata(viewObjectMetadataReplicationContext); - MetadataUtility.getInstance().createMetadata(replicateViewObjectMetadata); + MetadataUtility.getInstance().createMetadata(replicateViewObjectMetadata, true); - MetadataUtility.getInstance().saveMetadata(replicateViewObjectMetadata, true); + MetadataUtility.getInstance().saveMetadata(replicateViewObjectMetadata); // 更新表单内容关联VO schema.put("id", replicateViewObjectMetadata.getHeader().getId()); -- Gitee From 016030b65b41cd76a5d551c7aa2a4c8ca7448edb Mon Sep 17 00:00:00 2001 From: guozhiqi Date: Wed, 1 Feb 2023 11:25:25 +0800 Subject: [PATCH 03/10] =?UTF-8?q?=E5=85=83=E6=95=B0=E6=8D=AE=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E4=BE=9D=E6=8D=AE=E4=BE=9D=E8=B5=96=E8=BF=9B=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../replication/FormMetadataVoManager.java | 22 +++++++++---------- 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java index 843ac773..e0336ce9 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java @@ -49,18 +49,6 @@ class FormMetadataVoManager { // 复制vo元数据 GspMetadata replicateViewObjectMetadata = MetadataCloneManager.cloneMetadata(viewObjectMetadataReplicationContext); - MetadataUtility.getInstance().createMetadata(replicateViewObjectMetadata, true); - - MetadataUtility.getInstance().saveMetadata(replicateViewObjectMetadata); - - // 更新表单内容关联VO - schema.put("id", replicateViewObjectMetadata.getHeader().getId()); - - // 1.2 基于VO创建eapi - if (isDebug) { - System.out.println("viewObjectMetadata.RelativePath: " + replicateViewObjectMetadata.getRelativePath()); - } - EapiMetadataDtService eapiMetadataDtService = SpringBeanUtils.getBean(EapiMetadataDtService.class); GspMetadata metadata = eapiMetadataDtService.create(replicateViewObjectMetadata, replicateViewObjectMetadata.getRelativePath(), ResourceType.VO_ADVANCE); SgMetadata eapiMetadata = (SgMetadata) metadata.getContent(); @@ -74,6 +62,16 @@ class FormMetadataVoManager { schema.put("code", schema.get("code").toString().replace(sourceFormMetadata.getHeader().getCode(), targetMetadataDescription.getCode())); schema.put("name", schema.get("name").toString().replace(sourceFormMetadata.getHeader().getName(), targetMetadataDescription.getName())); schema.put("sourceUri", schema.get("sourceUri").toString().replace(sourceFormMetadata.getHeader().getCode(), targetMetadataDescription.getCode())); + + + // 为了避免删除vo元数据时依赖eapi 先进行删除eapi + MetadataUtility.getInstance().createMetadata(replicateViewObjectMetadata, true); + + MetadataUtility.getInstance().saveMetadata(replicateViewObjectMetadata); + + // 更新表单内容关联VO + schema.put("id", replicateViewObjectMetadata.getHeader().getId()); + } } } -- Gitee From 4297bb75bf80e0858d80b2c2f7ce694db37b5be5 Mon Sep 17 00:00:00 2001 From: guozhiqi Date: Wed, 1 Feb 2023 14:30:50 +0800 Subject: [PATCH 04/10] =?UTF-8?q?=E5=85=83=E6=95=B0=E6=8D=AE=E5=88=9B?= =?UTF-8?q?=E5=BB=BA=E5=89=8D=E5=A2=9E=E5=8A=A0=E6=98=AF=E5=90=A6=E5=AD=98?= =?UTF-8?q?=E5=9C=A8=E9=AA=8C=E8=AF=81=EF=BC=8C=E4=B8=8D=E5=AD=98=E5=9C=A8?= =?UTF-8?q?=E5=8D=B3=E5=88=9B=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../web/common/metadata/MetadataUtility.java | 18 +++++------------- .../replication/FormMetadataCmdManager.java | 4 ++-- .../replication/FormMetadataReplicator.java | 2 +- .../replication/FormMetadataSmManager.java | 2 +- .../replication/FormMetadataVoManager.java | 19 +++++++++---------- 5 files changed, 18 insertions(+), 27 deletions(-) diff --git a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java index e80a3a36..7900793e 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java @@ -202,26 +202,18 @@ public final class MetadataUtility { return getMetadataWithEnvironment(metadataId, ExecuteEnvironment.Runtime, false); } - /** - * 创建表单元数据 如果已经存在 是否执行删除操作 避免创建元数据时由于已存在 ,无法进行创建的问题 - * - * @param metadata 待保存元数据 - */ - public void createMetadata(GspMetadata metadata) { - this.createMetadata(metadata, false); - } /** - * 创建表单元数据 如果已经存在 是否执行删除操作 避免创建元数据时由于已存在 ,无法进行创建的问题 + * 创建表单元数据 如果已经存在 不进行创建,否则进行元数据的创建 * * @param metadata 待保存元数据 */ - public void createMetadata(GspMetadata metadata, boolean deleteIfExists) { + public void createMetadataIfNotExists(GspMetadata metadata) { MetadataService metadataService = SpringBeanUtils.getBean(MetadataService.class); - if (deleteIfExists) { - metadataService.deleteMetadata(metadata.getRelativePath(), metadata.getHeader().getFileName()); + // 元数据文件不存在时进行创建 + if (!metadataService.isMetadataExist(metadata.getRelativePath(), metadata.getHeader().getFileName())) { + metadataService.createMetadata(metadata.getRelativePath(), metadata); } - metadataService.createMetadata(metadata.getRelativePath(), metadata); } diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java index d209caf6..5fee53cd 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java @@ -59,7 +59,7 @@ public class FormMetadataCmdManager { webCommandMetadataReplicationContext.setTargetMetadataDescription(webCommandMetadataDto); GspMetadata replicateWebCommandMetadata = MetadataCloneManager.cloneMetadata(webCommandMetadataReplicationContext); - MetadataUtility.getInstance().createMetadata(replicateWebCommandMetadata,true); + MetadataUtility.getInstance().createMetadataIfNotExists(replicateWebCommandMetadata); // 更新表单内容关联webcmd String oldWebCmdId = webcmd.get("id").toString(); @@ -125,7 +125,7 @@ public class FormMetadataCmdManager { // TODO:提取RelativePath赋值操作,这样就无需先clone元数据再执行是否存在校验 if (!CheckIfMetadataFileExits(replicateWebComponentMetadata)) { - metadataUtility.createMetadata(replicateWebComponentMetadata,true); + metadataUtility.createMetadataIfNotExists(replicateWebComponentMetadata); } else { replicateWebComponentMetadata = metadataUtility.getMetadata(replicateWebComponentMetadata.getHeader().getFileName(), replicateWebComponentMetadata.getRelativePath()); } diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java index 33e0e360..8252dc33 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java @@ -73,7 +73,7 @@ public class FormMetadataReplicator { } // 磁盘中创建表单元数据 - MetadataUtility.getInstance().createMetadata(replicateFormMetadata); + MetadataUtility.getInstance().createMetadataIfNotExists(replicateFormMetadata); // 更新replicateFormMetadataContent FormMetadataContent replicateFormMetadataContent = (FormMetadataContent) replicateFormMetadata.getContent(); diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java index a776f933..df05482d 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java @@ -39,7 +39,7 @@ class FormMetadataSmManager { stateMachineMetadataReplicationContext.setTargetMetadataDescription(stateMachineMetadataDto); GspMetadata replicateStateMachineMetadata = MetadataCloneManager.cloneMetadata(stateMachineMetadataReplicationContext); - MetadataUtility.getInstance().createMetadata(replicateStateMachineMetadata,true); + MetadataUtility.getInstance().createMetadataIfNotExists(replicateStateMachineMetadata); MetadataUtility.getInstance().saveMetadata(replicateStateMachineMetadata); //原stateMachineId diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java index e0336ce9..5fac3056 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java @@ -49,6 +49,15 @@ class FormMetadataVoManager { // 复制vo元数据 GspMetadata replicateViewObjectMetadata = MetadataCloneManager.cloneMetadata(viewObjectMetadataReplicationContext); + // 为了避免删除vo元数据时依赖eapi 先进行删除eapi + MetadataUtility.getInstance().createMetadataIfNotExists(replicateViewObjectMetadata); + + MetadataUtility.getInstance().saveMetadata(replicateViewObjectMetadata); + + // 更新表单内容关联VO + schema.put("id", replicateViewObjectMetadata.getHeader().getId()); + + EapiMetadataDtService eapiMetadataDtService = SpringBeanUtils.getBean(EapiMetadataDtService.class); GspMetadata metadata = eapiMetadataDtService.create(replicateViewObjectMetadata, replicateViewObjectMetadata.getRelativePath(), ResourceType.VO_ADVANCE); SgMetadata eapiMetadata = (SgMetadata) metadata.getContent(); @@ -62,16 +71,6 @@ class FormMetadataVoManager { schema.put("code", schema.get("code").toString().replace(sourceFormMetadata.getHeader().getCode(), targetMetadataDescription.getCode())); schema.put("name", schema.get("name").toString().replace(sourceFormMetadata.getHeader().getName(), targetMetadataDescription.getName())); schema.put("sourceUri", schema.get("sourceUri").toString().replace(sourceFormMetadata.getHeader().getCode(), targetMetadataDescription.getCode())); - - - // 为了避免删除vo元数据时依赖eapi 先进行删除eapi - MetadataUtility.getInstance().createMetadata(replicateViewObjectMetadata, true); - - MetadataUtility.getInstance().saveMetadata(replicateViewObjectMetadata); - - // 更新表单内容关联VO - schema.put("id", replicateViewObjectMetadata.getHeader().getId()); - } } } -- Gitee From afd8da65662718559aaccb71df665821ba888502 Mon Sep 17 00:00:00 2001 From: guozhiqi Date: Wed, 1 Feb 2023 17:11:36 +0800 Subject: [PATCH 05/10] =?UTF-8?q?=E5=AF=BC=E8=88=AA=E5=B8=AE=E5=8A=A9?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E7=BA=A7=E8=81=94=E5=88=A0=E9=99=A4=E5=85=B6?= =?UTF-8?q?=E8=B5=84=E6=BA=90=E5=85=83=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../event/FormMetadataSaveEventListener.java | 103 ++++++++++++------ 1 file changed, 72 insertions(+), 31 deletions(-) diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/FormMetadataSaveEventListener.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/FormMetadataSaveEventListener.java index 173e5d40..c39927f8 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/FormMetadataSaveEventListener.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/FormMetadataSaveEventListener.java @@ -19,7 +19,15 @@ import java.io.File; import java.util.ArrayList; import java.util.List; +/** + * @author guozhiqi + */ public class FormMetadataSaveEventListener implements MetadataEventListener { + + private static final String suffixRes = ".res"; + private static final String suffixEnRes = ".en.lres"; + private static final String suffixZhChtRes = ".zh-CHT.lres"; + /** * 元数据保存前事件 */ @@ -140,34 +148,11 @@ public class FormMetadataSaveEventListener implements MetadataEventListener { // 如果删除的是webcmp 那么在删除之后将对应的ts文件进行删除 if ("WebComponent".equals(metadataEventArgs.getMetadata().getHeader().getType())) { - String tsFileName = metadataEventArgs.getMetadata().getHeader().getCode() + ".ts"; - String tsFilePath = metadataEventArgs.getMetadata().getRelativePath(); - String tsFileNameAndPath = FileUtility.combine(tsFilePath, tsFileName); - try { - FileUtility.deleteFile(tsFileNameAndPath); - } catch (Exception ex) { - WebLogger.Instance.error(ex.getMessage() + ex.getStackTrace()); - } + deleteTsFileAfterWebComponentDeleted(metadataEventArgs); } if (TerminalType.PC.getMetadataType().equals(metadataEventArgs.getMetadata().getHeader().getType())) { - try { - // 获取表单元数据的文件名称 - String metaDataCode = metadataEventArgs.getMetadata().getHeader().getCode(); - String formMetadataRelativePath = metadataEventArgs.getMetadata().getRelativePath(); - - //获取待删除的文件列表 仅删除当前目录下 - List relativeMetadataDeleteList = generateDeleteList(metaDataCode, new File(formMetadataRelativePath)); - relativeMetadataDeleteList.forEach(t -> { - File deleteFileInfo = new File(FileUtility.combine(formMetadataRelativePath, t)); - if (deleteFileInfo.exists()) { - // 执行元数据删除 - MetadataUtility.getInstance().getMetadataService().deleteMetadata(formMetadataRelativePath, t); - } - }); - } catch (Exception ex) { - WebLogger.Instance.error(ex); - } + deleteRelateMetadataAfterFormMetadataDeleted(metadataEventArgs); } // 如果是帮助元数据的删除 那么将其关联的res也要对应的删除 @@ -180,19 +165,55 @@ public class FormMetadataSaveEventListener implements MetadataEventListener { } } + /** + * 表单元数据删除后关联元数据删除 + * @param metadataEventArgs + */ + private void deleteRelateMetadataAfterFormMetadataDeleted(MetadataEventArgs metadataEventArgs) { + try { + // 获取表单元数据的文件名称 + String metaDataCode = metadataEventArgs.getMetadata().getHeader().getCode(); + String formMetadataRelativePath = metadataEventArgs.getMetadata().getRelativePath(); + + //获取待删除的文件列表 仅删除当前目录下 + List relativeMetadataDeleteList = generateDeleteList(metaDataCode, new File(formMetadataRelativePath)); + relativeMetadataDeleteList.forEach(t -> { + File deleteFileInfo = new File(FileUtility.combine(formMetadataRelativePath, t)); + if (deleteFileInfo.exists()) { + // 执行元数据删除 + MetadataUtility.getInstance().getMetadataService().deleteMetadata(formMetadataRelativePath, t); + } + }); + } catch (Exception ex) { + WebLogger.Instance.error(ex); + } + } + + /** + * WebComponent 删除后删除对应的ts文件 + * @param metadataEventArgs + */ + private void deleteTsFileAfterWebComponentDeleted(MetadataEventArgs metadataEventArgs) { + String tsFileName = metadataEventArgs.getMetadata().getHeader().getCode() + ".ts"; + String tsFilePath = metadataEventArgs.getMetadata().getRelativePath(); + String tsFileNameAndPath = FileUtility.combine(tsFilePath, tsFileName); + try { + FileUtility.deleteFile(tsFileNameAndPath); + } catch (Exception ex) { + WebLogger.Instance.error(ex.getMessage() + ex.getStackTrace()); + } + } + /** * 删除帮助关联的元数据 * * @param metadataEventArgs */ - private static void deleteRelateHelpMetadata(MetadataEventArgs metadataEventArgs) { + private void deleteRelateHelpMetadata(MetadataEventArgs metadataEventArgs) { String fileName = metadataEventArgs.getMetadata().getHeader().getFileName(); String name = metadataEventArgs.getMetadata().getHeader().getName(); String relativePath = metadataEventArgs.getMetadata().getRelativePath(); String projectRelativePath = MetadataUtility.getInstance().getMetadataProjectPath(relativePath); - String suffixRes = ".res"; - String suffixEnRes = ".en.lres"; - String suffixZhChtRes = ".zh-CHT.lres"; String relateResource = fileName + suffixRes; MetadataUtility.getInstance().getMetadataService().deleteMetadata(relativePath, relateResource); @@ -203,11 +224,32 @@ public class FormMetadataSaveEventListener implements MetadataEventListener { String relateZh_CHTResource = fileName + suffixZhChtRes; MetadataUtility.getInstance().getMetadataService().deleteMetadata(relativePath, relateZh_CHTResource); + // 删除帮助eapi String eapiName = name + "_hlp.eapi"; - String eapiFilePath=FileUtility.combine(projectRelativePath,"eapi"); + String eapiFilePath = FileUtility.combine(projectRelativePath, "eapi"); MetadataUtility.getInstance().getMetadataService().deleteMetadata(eapiFilePath, eapiName); + // 删除导航帮助 nav eapi + String navEapiName = name + "_hlp_nav.eapi"; + String navEapiFilePath = FileUtility.combine(projectRelativePath, "eapi"); + MetadataUtility.getInstance().getMetadataService().deleteMetadata(navEapiFilePath, navEapiName); + + // 删除导航帮助 nav + String relateNavVO = name + "_hlp_nav.vo"; + deleteHelpVoAndRelateMetadata(relateNavVO, relativePath); + + // 删除普通帮助 String relateVO = name + "_hlp.vo"; + deleteHelpVoAndRelateMetadata(relateVO, relativePath); + } + + /** + * 删除帮助及其关联资源元数据 + * + * @param relateVO + * @param relativePath + */ + private void deleteHelpVoAndRelateMetadata(String relateVO, String relativePath) { MetadataUtility.getInstance().getMetadataService().deleteMetadata(relativePath, relateVO); String relateVORes = relateVO + suffixRes; @@ -265,6 +307,5 @@ public class FormMetadataSaveEventListener implements MetadataEventListener { return deleteList; } - } -- Gitee From d620a3d883f0190bd25b74e7d69b11a57735a956 Mon Sep 17 00:00:00 2001 From: guozhiqi Date: Tue, 7 Feb 2023 16:55:04 +0800 Subject: [PATCH 06/10] =?UTF-8?q?=E8=A1=A8=E5=8D=95=E5=A4=8D=E5=88=B6--?= =?UTF-8?q?=E5=91=BD=E4=BB=A4=E6=9E=84=E4=BB=B6ts=E5=90=8C=E6=AD=A5?= =?UTF-8?q?=E5=A4=8D=E5=88=B6=E5=B9=B6=E4=BF=AE=E6=AD=A3=E5=AF=B9=E5=BA=94?= =?UTF-8?q?=E7=9A=84class=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../inspur/edp/web/common/io/FileUtility.java | 22 ++++++++++ .../web/common/metadata/MetadataUtility.java | 6 ++- .../CommandServiceAnalysis.java | 3 +- .../metadataanalysis/CommandsAnalysis.java | 10 ++--- .../CommandServiceAnalysis.java | 2 +- .../CommandServiceAnalysisTest.java | 41 +++++++++++++++++++ .../event/WebCommandMetadataDelete.java | 4 -- .../formmetadata/metadata/module/Module.java | 15 +++++++ .../replication/FormMetadataCmdManager.java | 32 ++++++++++----- .../MetadataHeaderCloneManager.java | 3 ++ .../service/FormMetataService.java | 5 +++ .../FormMetadataCmdManagerTest.java | 22 ++++++++++ 12 files changed, 140 insertions(+), 25 deletions(-) create mode 100644 web-form-jitengine/src/test/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandServiceAnalysisTest.java create mode 100644 web-form-metadata/src/test/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManagerTest.java diff --git a/web-common/src/main/java/com/inspur/edp/web/common/io/FileUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/io/FileUtility.java index 6320f2bd..7968a0ba 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/io/FileUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/io/FileUtility.java @@ -472,6 +472,28 @@ public class FileUtility { return file.isAbsolute(); } + /** + * 获取对应的文件名称 + * 如果传递的路径末尾不是文件名称,那么使用最末尾的字符内容 + * + * @param file + * @return + */ + public static String getFileName(File file) { + return file.getName(); + } + + /** + * 获取对应文件路径的文件名称参数 + * + * @param filePath + * @return + */ + public static String getFileName(String filePath) { + return getFileName(new File(filePath)); + } + + /** * 路径转换,获取平台无关的路径 * diff --git a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java index 7900793e..cfb679c3 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java @@ -370,7 +370,8 @@ public final class MetadataUtility { return componentMetadataCollection; } - private void getReferenceWebComponentMetadata(GspMetadata commandMetadata, HashMap cmpList, List items, HashMap componentCacheList, AfterGetReferenceWebComponentMetadata afterGetReferenceWebComponentMetadata, Object... parameterArray) { + private void getReferenceWebComponentMetadata(GspMetadata commandMetadata, HashMap cmpList, List items, + HashMap componentCacheList, AfterGetReferenceWebComponentMetadata afterGetReferenceWebComponentMetadata, Object... parameterArray) { WebCommandsMetadata commandMetadataContent = null; try { commandMetadataContent = (WebCommandsMetadata) commandMetadata.getContent(); @@ -396,7 +397,8 @@ public final class MetadataUtility { } - private void getReferenceWebComponentCommandItemList(GspMetadata commandMetadata, List commandItemList, HashMap componentMetadataCollection, HashMap componentCacheList, AfterGetReferenceWebComponentMetadata afterGetReferenceWebComponentMetadata, Object... parameterArray) { + private void getReferenceWebComponentCommandItemList(GspMetadata commandMetadata, List commandItemList, HashMap componentMetadataCollection, + HashMap componentCacheList, AfterGetReferenceWebComponentMetadata afterGetReferenceWebComponentMetadata, Object... parameterArray) { if (commandItemList == null || commandItemList.size() == 0) { return; } diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandServiceAnalysis.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandServiceAnalysis.java index c6e2883d..681dcbe0 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandServiceAnalysis.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandServiceAnalysis.java @@ -23,6 +23,7 @@ import java.util.Map; public class CommandServiceAnalysis { /** * 解析表单元数据中的命令服务 + * * @param json * @param path * @param targetFormServiceBasePath @@ -39,7 +40,7 @@ public class CommandServiceAnalysis { HashMap serviceFileList = new HashMap<>(16); for (HashMap o : json.getModule().getServiceRefs()) { if ("0".equals(o.get("isCommon").toString())) { - String fileName = o.get("path").toString().substring(o.get("path").toString().lastIndexOf("/") + 1); + String fileName = FileUtility.getFileName(o.get("path").toString()); String contents = CommandServiceManager.getTypescriptFileContent(path, "", o, ExecuteEnvironment.Design, false); if (StringUtility.isNullOrEmpty(contents)) { return; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandsAnalysis.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandsAnalysis.java index 49ccf103..32eb8ab8 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandsAnalysis.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandsAnalysis.java @@ -175,10 +175,6 @@ public class CommandsAnalysis { while (iter.hasNext()) { HashMap.Entry entry = (HashMap.Entry) iter.next(); - if (json.getModule().getServiceRefs() == null) { - json.getModule().setServiceRefs(new ArrayList<>()); - } - HashMap serviceRef = new HashMap<>(); WebComponentMetadata component = (WebComponentMetadata) entry.getValue(); if (component == null) { @@ -204,16 +200,16 @@ public class CommandsAnalysis { } } - private boolean hasServiceReference(List> serviceReferenceList, WebComponentMetadata component) throws Exception { + private boolean hasServiceReference(List> serviceReferenceList, WebComponentMetadata component) { boolean flag = false; for (HashMap serviceRef : serviceReferenceList) { if (serviceRef.containsKey("name") && serviceRef.containsKey("path")) { if (serviceRef.get("name") == null) { - throw new Exception("标识为'{" + serviceRef.get("cmpId") + "'的服务构件name属性不允许为null。"); + throw new RuntimeException("标识为'{" + serviceRef.get("cmpId") + "'的服务构件name属性不允许为null。"); } if (serviceRef.get("path") == null) { - throw new Exception("标识为'" + serviceRef.get("cmpId") + "'的服务构件path属性不允许为null。"); + throw new RuntimeException("标识为'" + serviceRef.get("cmpId") + "'的服务构件path属性不允许为null。"); } if (serviceRef.get("name").toString().equals(component.getClassName()) && diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataparser/commandservice/CommandServiceAnalysis.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataparser/commandservice/CommandServiceAnalysis.java index f45f6d1a..2bd81715 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataparser/commandservice/CommandServiceAnalysis.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataparser/commandservice/CommandServiceAnalysis.java @@ -23,7 +23,7 @@ public class CommandServiceAnalysis { String code = json.getModule().getCode(); for (HashMap serviceRefsObject : json.getModule().getServiceRefs()) { if (serviceRefsObject.get("isCommon").toString().equals("0")) { - String fileName = serviceRefsObject.get("path").toString().substring(serviceRefsObject.get("path").toString().lastIndexOf("/") + 1); + String fileName = FileUtility.getFileName(serviceRefsObject.get("path").toString()); String contents = CommandServiceManager.getTypescriptFileContent(path, webDevPath, serviceRefsObject, executeEnvironment, isUpdradeTool); if (StringUtility.isNullOrEmpty(contents)) { diff --git a/web-form-jitengine/src/test/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandServiceAnalysisTest.java b/web-form-jitengine/src/test/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandServiceAnalysisTest.java new file mode 100644 index 00000000..faef2e38 --- /dev/null +++ b/web-form-jitengine/src/test/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandServiceAnalysisTest.java @@ -0,0 +1,41 @@ +package com.inspur.edp.web.jitengine.metadataanalysis; + +import com.inspur.edp.web.common.io.FileUtility; +import org.junit.Test; + +import java.io.File; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.HashMap; + +import static org.junit.Assert.*; + +public class CommandServiceAnalysisTest { + + @Test + public void test() { + Path path = Paths.get("dd\\dsds\\dsdsd\\dsdsdddddd"); + File file = new File("dd\\dsdsd\\dsdsdsds\\gfdgdfgdfgdfgdfg"); + assertEquals("gfdgdfgdfgdfgdfg", file.getName()); + + HashMap hashMap = new HashMap<>(); + hashMap.put("path", "nohhhh\\fdfd\\fffff"); + + String extensionResult = hashMap.get("path").toString().substring(hashMap.get("path").toString().lastIndexOf("/") + 1); + assertEquals(extensionResult, "nohhhh\\fdfd\\fffff"); + + String fileNameResult = FileUtility.getFileName("nohhhh\\fdfd\\fffff"); + assertEquals(fileNameResult, "fffff"); + + + File extensionFile = new File("fff/fff.txt"); + + } + + @Test + public void testFileExtension() { + String result = "dd/ddd/dddddd.txt"; + String strExtension = FileUtility.getFileExtension(result); + System.out.println(strExtension); + } +} \ No newline at end of file diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/WebCommandMetadataDelete.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/WebCommandMetadataDelete.java index b5659e24..d23abf3e 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/WebCommandMetadataDelete.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/WebCommandMetadataDelete.java @@ -173,10 +173,6 @@ class WebCommandMetadataDelete { while (iter.hasNext()) { HashMap.Entry entry = (HashMap.Entry) iter.next(); - if (json.getModule().getServiceRefs() == null) { - json.getModule().setServiceRefs(new ArrayList<>()); - } - HashMap serviceRef = new HashMap<>(); WebComponentMetadata component = (WebComponentMetadata) entry.getValue(); if (component == null) { diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/module/Module.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/module/Module.java index 16382b14..ddc2135a 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/module/Module.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/module/Module.java @@ -208,10 +208,25 @@ public class Module { this.expressions = expressions; } + /** + * 对应的工具栏信息 + */ + private HashMap toolbar; + + public final HashMap getToolbar() { + return this.toolbar; + } + + public final void setToolbar(HashMap toolbar) { + this.toolbar = toolbar; + } private ArrayList> serviceRefs; public final ArrayList> getServiceRefs() { + if (this.serviceRefs == null) { + this.serviceRefs = new ArrayList<>(); + } return serviceRefs; } diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java index 5fee53cd..12fdc4da 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java @@ -8,8 +8,10 @@ import com.inspur.edp.web.command.component.metadata.CmpMethodRefering; import com.inspur.edp.web.command.component.metadata.WebCommandsMetadata; import com.inspur.edp.web.common.GSPException; import com.inspur.edp.web.common.io.FileUtility; +import com.inspur.edp.web.common.logger.WebLogger; import com.inspur.edp.web.common.metadata.MetadataUtility; import com.inspur.edp.web.common.serialize.SerializeUtility; +import com.inspur.edp.web.common.utility.StringUtility; import com.inspur.edp.web.formmetadata.metadata.formdom.FormDOM; import com.inspur.edp.web.tsfile.api.service.TsFileService; import io.iec.edp.caf.commons.utils.SpringBeanUtils; @@ -35,6 +37,10 @@ public class FormMetadataCmdManager { if (webcmdCollection != null && !webcmdCollection.isEmpty()) { for (HashMap webcmd : webcmdCollection) { String webcmdId = webcmd.containsKey("id") ? webcmd.get("id").toString() : ""; + if (StringUtility.isNullOrEmpty(webcmdId)) { + WebLogger.Instance.info("表单元数据复制,webcmds节点下,对应的id参数为空。完整的命令信息:" + webcmd); + continue; + } GspMetadata webCmdMetadata = MetadataUtility.getInstance().getMetadataWithIdAndPath(webcmdId, sourceFormMetadata.getRelativePath()); if (webCmdMetadata == null) { throw new GSPException("Web_Replicate", "复制表单元数据时,获取命令构件失败。待获取命令构件ID是:" + webcmdId); @@ -69,7 +75,9 @@ public class FormMetadataCmdManager { // TODO: 具体化实现细节,避免性能问题 // 更新ViewModels中关联webcmd String viewModelCollectionStr = SerializeUtility.getInstance().serialize(replicateFormDOM.getModule().getviewmodels(), false); + // 将viewModel中 替换webCmd viewModelCollectionStr = viewModelCollectionStr.replace(oldWebCmdId, webcmd.get("id").toString()); + ArrayList> temp = new ArrayList<>(); replicateFormDOM.getModule().setviewmodels(SerializeUtility.getInstance().deserialize(viewModelCollectionStr, temp.getClass())); //防止找不到Web构件 @@ -101,10 +109,6 @@ public class FormMetadataCmdManager { return; } - MetadataUtility metadataUtility = MetadataUtility.getInstance(); - - // 拷贝这个服务构件 - // 查找指定路径是否存在相同元数据,如果存在使用已有元数据,如果没有则创建一个 MetadataDto webComponentMetadataDto = new MetadataDto(); @@ -114,8 +118,10 @@ public class FormMetadataCmdManager { webComponentMetadataDto.setProjectName(targetMetadataDescription.getProjectName()); webComponentMetadataDto.setRelativePath(targetMetadataDescription.getRelativePath()); + // TODO:替换方式不准确,待优化 - componentMetadata.setExtendProperty(componentMetadata.getExtendProperty().replace(sourceFormMetadata.getHeader().getCode().split(Pattern.quote("_"), -1)[0], targetMetadataDescription.getCode().split(Pattern.quote("_"), -1)[0])); + componentMetadata.setExtendProperty(componentMetadata.getExtendProperty().replace(sourceFormMetadata.getHeader().getCode().split(Pattern.quote("_"), -1)[0], + targetMetadataDescription.getCode().split(Pattern.quote("_"), -1)[0])); MetadataReplicationContext componentMetadataReplicationContext = new MetadataReplicationContext(); componentMetadataReplicationContext.setSourceMetadata(componentMetadata); componentMetadataReplicationContext.setSourceProjectName(metadataReplicationContext.getSourceProjectName()); @@ -125,9 +131,9 @@ public class FormMetadataCmdManager { // TODO:提取RelativePath赋值操作,这样就无需先clone元数据再执行是否存在校验 if (!CheckIfMetadataFileExits(replicateWebComponentMetadata)) { - metadataUtility.createMetadataIfNotExists(replicateWebComponentMetadata); + MetadataUtility.getInstance().createMetadataIfNotExists(replicateWebComponentMetadata); } else { - replicateWebComponentMetadata = metadataUtility.getMetadata(replicateWebComponentMetadata.getHeader().getFileName(), replicateWebComponentMetadata.getRelativePath()); + replicateWebComponentMetadata = MetadataUtility.getInstance().getMetadata(replicateWebComponentMetadata.getHeader().getFileName(), replicateWebComponentMetadata.getRelativePath()); } // 更新命令构件关联的服务构件 @@ -141,9 +147,12 @@ public class FormMetadataCmdManager { //更新path if (!path.equals(MetadataUtility.getInstance().getTypeScriptFileName(componentMetadata))) { path = MetadataUtility.getInstance().getTypeScriptFileName(componentMetadata); - componentMetadataContent.setSource(path); + componentMetadataContent.setSource(FileUtility.getPlatformIndependentPath(path)); } + componentMetadataContent.setName(commandMetadata.getHeader().getName()); + + // 拷贝服务构件关联的文件(.ts文件) String absolutePath = MetadataUtility.getInstance().getAbsolutePath(path); String oldFileContent = FileUtility.readAsString(absolutePath); @@ -170,9 +179,12 @@ public class FormMetadataCmdManager { // 更新服务构件 WebComponentMetadata replicateComponentMetadataContent = (WebComponentMetadata) replicateWebComponentMetadata.getContent(); - replicateComponentMetadataContent.setSource(targetPath); + replicateComponentMetadataContent.setSource(FileUtility.getPlatformIndependentPath(FileUtility.combine(new File(targetPath).getParent(), fileName))); + // 调整 webComponent中的扩展 ts中的class名称 + replicateWebComponentMetadata.setExtendProperty(replicateWebComponentMetadata.getExtendProperty().replace(oldTsClassName, newTsClassName)); + replicateComponentMetadataContent.setClassName(newTsClassName); - metadataUtility.saveMetadata(replicateWebComponentMetadata); + MetadataUtility.getInstance().saveMetadata(replicateWebComponentMetadata); } private static boolean CheckIfMetadataFileExits(GspMetadata metadata) { diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataHeaderCloneManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataHeaderCloneManager.java index 29927331..3725ba61 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataHeaderCloneManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataHeaderCloneManager.java @@ -16,6 +16,7 @@ import java.util.UUID; class MetadataHeaderCloneManager { /** * 构造target metadata header + * * @param sourceMetadata * @param metadataDto * @return @@ -41,6 +42,8 @@ class MetadataHeaderCloneManager { targetMetadataHeader.setBizobjectID(sourceMetadata.getHeader().getBizobjectID()); targetMetadataHeader.setLanguage(sourceMetadata.getHeader().getLanguage()); targetMetadataHeader.setTranslating(sourceMetadata.getHeader().isTranslating()); + // 配置是否允许扩展 + targetMetadataHeader.setExtendable(sourceMetadata.getHeader().isExtendable()); return targetMetadataHeader; } diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetataService.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetataService.java index eb072320..278ddfd8 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetataService.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetataService.java @@ -10,6 +10,7 @@ import com.inspur.edp.lcm.metadata.api.entity.MetadataHeader; import com.inspur.edp.lcm.metadata.api.exception.MetadataNotFoundException; import com.inspur.edp.lcm.metadata.api.service.MetadataService; import com.inspur.edp.web.common.GSPException; +import com.inspur.edp.web.common.entity.ResultCode; import com.inspur.edp.web.common.entity.ResultMessage; import com.inspur.edp.web.common.io.FileUtility; import com.inspur.edp.web.common.logger.WebLogger; @@ -274,6 +275,10 @@ public class FormMetataService { } //根据当前表单元数据id 获取对应的元数据信息 + // 判断当前表单元数据是否不存在 + if (!MetadataUtility.getInstance().isMetaDataExistsWithMetadataIDAndPath(sourceMetadataRelativePath, sourceMetadataId)) { + return ResultCode.info("待复制的表单元数据不存在,请确认该元数据是否已被删除。"); + } GspMetadata sourceFormMetadata = MetadataUtility.getInstance().getMetadataWithIdAndPath(sourceMetadataId, sourceMetadataRelativePath); if (sourceFormMetadata == null) { throw new GSPException("Web_Replicate", "表单复制,获取元数据为空。待获取元数据ID是:" + sourceMetadataId); diff --git a/web-form-metadata/src/test/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManagerTest.java b/web-form-metadata/src/test/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManagerTest.java new file mode 100644 index 00000000..dbbcf32f --- /dev/null +++ b/web-form-metadata/src/test/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManagerTest.java @@ -0,0 +1,22 @@ +package com.inspur.edp.web.formmetadata.replication; + +import com.inspur.edp.web.common.io.FileUtility; +import org.junit.Test; + +import java.io.File; + +import static org.junit.Assert.*; + +public class FormMetadataCmdManagerTest { + @Test + public void test() { + String source = "noahguozhiqinoah"; + String replaceResult = source.replace("noah", "郭志奇"); + System.out.println(replaceResult); + + File file = new File("dd/ffff.txt"); + System.out.println(file.getName()); + + System.out.println(FileUtility.combine(new File("dd/dddsdsd/fff.txt").getParent(), file.getName())); + } +} \ No newline at end of file -- Gitee From 2439e7366f14b935fa72377671dd0966c548f16f Mon Sep 17 00:00:00 2001 From: guozhiqi Date: Wed, 8 Feb 2023 14:13:49 +0800 Subject: [PATCH 07/10] =?UTF-8?q?=E8=A1=A8=E5=8D=95=E5=A4=8D=E5=88=B6-?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=B5=84=E6=BA=90=E5=85=83=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E7=9A=84=E5=A4=8D=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entity/ResourceMetadataType.java | 54 +++++++++++++++++++ .../event/FormMetadataSaveEventListener.java | 25 +++++---- .../replication/FormMetadataReplicator.java | 33 ++++++++++-- .../MetaDataReplicateBeforeValidator.java | 2 +- .../replication/MetadataCloneManager.java | 11 +++- .../MetadataReplicationContext.java | 14 +++++ .../FormMetadataReplicatorTest.java | 10 ++++ 7 files changed, 130 insertions(+), 19 deletions(-) create mode 100644 web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/entity/ResourceMetadataType.java diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/entity/ResourceMetadataType.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/entity/ResourceMetadataType.java new file mode 100644 index 00000000..1c922235 --- /dev/null +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/entity/ResourceMetadataType.java @@ -0,0 +1,54 @@ +package com.inspur.edp.web.formmetadata.entity; + +/** + * 资源元数据类型 + * + * @author guozhiqi + */ +public enum ResourceMetadataType { + /** + * 简体中文 + */ + ZH_CH { + @Override + public String getSuffix() { + return ".res"; + } + }, + /** + * 英文 + */ + EN { + @Override + public String getSuffix() { + return ".en.lres"; + } + }, + /** + * 繁体中文 + */ + ZH_CHT { + @Override + public String getSuffix() { + return ".zh-CHT.lres"; + } + }; + + /** + * 获取对应的元数据文件名称后缀 + * + * @return + */ + public abstract String getSuffix(); + + /** + * 构造对应的资源元数据的实际文件名称 + * @param fileNameWithoutExtension + * @return + */ + public String getFileName(String fileNameWithoutExtension) { + return fileNameWithoutExtension + this.getSuffix(); + } + + +} diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/FormMetadataSaveEventListener.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/FormMetadataSaveEventListener.java index c39927f8..476652ee 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/FormMetadataSaveEventListener.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/FormMetadataSaveEventListener.java @@ -10,6 +10,7 @@ import com.inspur.edp.web.common.io.FileUtility; import com.inspur.edp.web.common.logger.WebLogger; import com.inspur.edp.web.common.metadata.MetadataUtility; import com.inspur.edp.web.common.serialize.SerializeUtility; +import com.inspur.edp.web.formmetadata.entity.ResourceMetadataType; import com.inspur.edp.web.formmetadata.metadata.FormMetadataContent; import com.inspur.edp.web.formmetadata.metadata.formdom.FormDOM; import com.inspur.edp.web.formmetadata.service.FormMetataService; @@ -24,10 +25,6 @@ import java.util.List; */ public class FormMetadataSaveEventListener implements MetadataEventListener { - private static final String suffixRes = ".res"; - private static final String suffixEnRes = ".en.lres"; - private static final String suffixZhChtRes = ".zh-CHT.lres"; - /** * 元数据保存前事件 */ @@ -167,6 +164,7 @@ public class FormMetadataSaveEventListener implements MetadataEventListener { /** * 表单元数据删除后关联元数据删除 + * * @param metadataEventArgs */ private void deleteRelateMetadataAfterFormMetadataDeleted(MetadataEventArgs metadataEventArgs) { @@ -191,6 +189,7 @@ public class FormMetadataSaveEventListener implements MetadataEventListener { /** * WebComponent 删除后删除对应的ts文件 + * * @param metadataEventArgs */ private void deleteTsFileAfterWebComponentDeleted(MetadataEventArgs metadataEventArgs) { @@ -215,13 +214,13 @@ public class FormMetadataSaveEventListener implements MetadataEventListener { String relativePath = metadataEventArgs.getMetadata().getRelativePath(); String projectRelativePath = MetadataUtility.getInstance().getMetadataProjectPath(relativePath); - String relateResource = fileName + suffixRes; + String relateResource = ResourceMetadataType.ZH_CH.getFileName(fileName); MetadataUtility.getInstance().getMetadataService().deleteMetadata(relativePath, relateResource); - String relateEnResource = fileName + suffixEnRes; + String relateEnResource = ResourceMetadataType.EN.getFileName(fileName); MetadataUtility.getInstance().getMetadataService().deleteMetadata(relativePath, relateEnResource); - String relateZh_CHTResource = fileName + suffixZhChtRes; + String relateZh_CHTResource = ResourceMetadataType.ZH_CHT.getFileName(fileName); MetadataUtility.getInstance().getMetadataService().deleteMetadata(relativePath, relateZh_CHTResource); // 删除帮助eapi @@ -252,13 +251,13 @@ public class FormMetadataSaveEventListener implements MetadataEventListener { private void deleteHelpVoAndRelateMetadata(String relateVO, String relativePath) { MetadataUtility.getInstance().getMetadataService().deleteMetadata(relativePath, relateVO); - String relateVORes = relateVO + suffixRes; + String relateVORes = ResourceMetadataType.ZH_CH.getFileName(relateVO); MetadataUtility.getInstance().getMetadataService().deleteMetadata(relativePath, relateVORes); - String relateVOEnRes = relateVO + suffixEnRes; + String relateVOEnRes = ResourceMetadataType.EN.getFileName(relateVO); MetadataUtility.getInstance().getMetadataService().deleteMetadata(relativePath, relateVOEnRes); - String relateVOZHCHTRes = relateVO + suffixZhChtRes; + String relateVOZHCHTRes = ResourceMetadataType.ZH_CHT.getFileName(relateVO); MetadataUtility.getInstance().getMetadataService().deleteMetadata(relativePath, relateVOZHCHTRes); } @@ -287,9 +286,9 @@ public class FormMetadataSaveEventListener implements MetadataEventListener { String frmXiaPrefix = metaDataCode + "_frm"; // 表单关联资源文件 - deleteList.add(frmDotPrefix + ".en.lres"); - deleteList.add(frmDotPrefix + ".res"); - deleteList.add(frmDotPrefix + ".zh-CHT.lres"); + deleteList.add(frmDotPrefix + ResourceMetadataType.EN.getSuffix()); + deleteList.add(frmDotPrefix + ResourceMetadataType.ZH_CH.getSuffix()); + deleteList.add(frmDotPrefix + ResourceMetadataType.ZH_CHT.getSuffix()); // 表单元数据json文件 deleteList.add(frmXiaPrefix + ".json"); diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java index 8252dc33..ba6ba041 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java @@ -8,6 +8,7 @@ import com.inspur.edp.web.common.entity.ResultMessage; import com.inspur.edp.web.common.io.FileUtility; import com.inspur.edp.web.common.logger.WebLogger; import com.inspur.edp.web.common.metadata.MetadataUtility; +import com.inspur.edp.web.formmetadata.entity.ResourceMetadataType; import com.inspur.edp.web.formmetadata.metadata.FormMetadataContent; import com.inspur.edp.web.formmetadata.metadata.FormMetadataContentService; import com.inspur.edp.web.formmetadata.metadata.formdom.FormDOM; @@ -24,11 +25,12 @@ public class FormMetadataReplicator { * 表单复制接口,目前仅支持同一个BO内复制 * 针对表单元数据复制,需要判断其是否已存在,如果已经存在,那么不允许其进行复制操作 * 如果是表单元数据关联的其他元数据,那么不判断其是否已存在,如果已存在,那么执行先删除操作 + * * @param sourceFormMetadata 待复制表单元数据 * @param sourceProjectName 待复制表单元数据所属工程名称 - * @param targetMetadataCode 目标元数据编号 - * @param targetMetadataName 目标元数据名称 - * @param targetProjectName 目标元数据所在工程名称 + * @param targetMetadataCode 目标元数据编号 + * @param targetMetadataName 目标元数据名称 + * @param targetProjectName 目标元数据所在工程名称 */ public final ResultMessage replicate(GspMetadata sourceFormMetadata, String sourceProjectName, String targetMetadataCode, String targetMetadataName, String targetProjectName) { @@ -93,6 +95,9 @@ public class FormMetadataReplicator { // 前置条件:保存前,对应的元数据文件已存在 MetadataUtility.getInstance().saveMetadata(replicateFormMetadata); + + // 同步复制表单元数据的英文、繁体中文资源元数据 + copyResourceMetadataWithSpecificLanguage(context, sourceFormMetadata, replicateFormMetadata); } catch (RuntimeException ex) { WebLogger.Instance.error("表单复制出现错误," + ex.getMessage() + ex.getStackTrace()); // 执行元数据的清理工作 此处仅删除表单元数据 因此存在表单元数据级联删除动作 @@ -106,4 +111,26 @@ public class FormMetadataReplicator { return ResultCode.success(); } + private static void copyResourceMetadataWithSpecificLanguage(MetadataReplicationContext context, GspMetadata sourceFormMetadata, GspMetadata replicateFormMetadata) { + String sourceEnResourceFileName = ResourceMetadataType.EN.getFileName(sourceFormMetadata.getHeader().getFileName()); + String targetEnResourceFileName = ResourceMetadataType.EN.getFileName(replicateFormMetadata.getHeader().getFileName()); + copyResourceMetadataWithSpecificLanguage(context, sourceFormMetadata, replicateFormMetadata, sourceEnResourceFileName, targetEnResourceFileName); + + String sourceZH_CHTResourceFileName = ResourceMetadataType.ZH_CHT.getFileName(sourceFormMetadata.getHeader().getFileName()); + String targetZH_CHTResourceFileName = ResourceMetadataType.ZH_CHT.getFileName(replicateFormMetadata.getHeader().getFileName()); + copyResourceMetadataWithSpecificLanguage(context, sourceFormMetadata, replicateFormMetadata, sourceZH_CHTResourceFileName, targetZH_CHTResourceFileName); + } + + private static void copyResourceMetadataWithSpecificLanguage(MetadataReplicationContext context, GspMetadata sourceFormMetadata, GspMetadata replicateFormMetadata, String sourceResourceFileName, String targetResourceFileName) { + if (MetadataUtility.getInstance().isMetaDataExistsWithMetadataPathAndFileName(sourceFormMetadata.getRelativePath(), sourceResourceFileName)) { + GspMetadata resourceMetadata = MetadataUtility.getInstance().getMetadata(sourceResourceFileName, sourceFormMetadata.getRelativePath()); + MetadataReplicationContext resourceContext = MetadataReplicationContextService.create(context.getSourceProjectName(), resourceMetadata, replicateFormMetadata.getHeader().getCode(), + replicateFormMetadata.getHeader().getName(), context.getSourceProjectName()); + resourceContext.setTargetFileName(targetResourceFileName); + GspMetadata targetResourceMetadata = MetadataCloneManager.cloneMetadata(resourceContext); + MetadataUtility.getInstance().createMetadataIfNotExists(targetResourceMetadata); + MetadataUtility.getInstance().saveMetadata(targetResourceMetadata); + } + } + } diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetaDataReplicateBeforeValidator.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetaDataReplicateBeforeValidator.java index e81be8f0..70de8a84 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetaDataReplicateBeforeValidator.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetaDataReplicateBeforeValidator.java @@ -23,7 +23,7 @@ class MetaDataReplicateBeforeValidator { // 判断目标元数据是否存在 boolean isExists = MetadataUtility.getInstance().isMetaDataExistsWithMetadataPathAndFileName(targetMetaData.getRelativePath(), targetMetaData.getHeader().getFileName()); if (isExists) { - resultMessage = ResultCode.info("目标元数据存在,无法进行复制。对应目标元数据名称:" + targetMetaData.getHeader().getFileName() + ",所属工程路径:" + targetMetaData.getRelativePath()); + resultMessage = ResultCode.info("目标元数据存在,无法进行复制。对应目标元数据名称:" + targetMetaData.getHeader().getName() + ",所属工程路径:" + targetMetaData.getRelativePath()); return resultMessage; } diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataCloneManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataCloneManager.java index 4bcd24b1..e5b281a8 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataCloneManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataCloneManager.java @@ -4,6 +4,7 @@ import com.inspur.edp.lcm.metadata.api.IMetadataContent; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; import com.inspur.edp.lcm.metadata.api.entity.MetadataDto; import com.inspur.edp.web.common.GSPException; +import com.inspur.edp.web.common.io.FileUtility; import com.inspur.edp.web.common.utility.StringUtility; import com.inspur.edp.web.formmetadata.replication.adjust.CloneAdjustStrategyFactory; @@ -36,8 +37,14 @@ class MetadataCloneManager { // 检测 MetadataDto if (StringUtility.isNotNullOrEmpty(metadataDto.getCode()) && StringUtility.isNullOrEmpty(metadataDto.getFileName())) { - String fileSuffix = sourceMetadata.getHeader().getFileName().substring(sourceMetadata.getHeader().getFileName().lastIndexOf(".")); - metadataDto.setFileName(metadataDto.getCode() + fileSuffix); + + if (StringUtility.isNullOrEmpty(metadataReplicationContext.getTargetFileName())) { + String fileSuffix = FileUtility.getFileExtension(sourceMetadata.getHeader().getFileName()); + metadataDto.setFileName(metadataDto.getCode() + fileSuffix); + } else { + metadataDto.setFileName(metadataReplicationContext.getTargetFileName()); + } + } GspMetadata replicateMetadata = new GspMetadata(); // 复制MetadataHeader diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataReplicationContext.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataReplicationContext.java index 11bc43bf..859220c4 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataReplicationContext.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataReplicationContext.java @@ -6,6 +6,7 @@ import com.inspur.edp.lcm.metadata.api.entity.MetadataDto; /** * 表单复制传递上下文参数 + * * @author guozhiqi */ public final class MetadataReplicationContext { @@ -48,6 +49,19 @@ public final class MetadataReplicationContext { this.targetMetadataDescription = value; } + /** + * 获取目标元数据文件的名称 + */ + private String targetFileName; + + public void setTargetFileName(String targetFileSuffix) { + this.targetFileName = targetFileSuffix; + } + + public String getTargetFileName() { + return this.targetFileName; + } + public MetadataReplicationContext() { } diff --git a/web-form-metadata/src/test/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicatorTest.java b/web-form-metadata/src/test/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicatorTest.java index 4a9fc368..f308f3b8 100644 --- a/web-form-metadata/src/test/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicatorTest.java +++ b/web-form-metadata/src/test/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicatorTest.java @@ -1,7 +1,10 @@ package com.inspur.edp.web.formmetadata.replication; +import com.inspur.edp.web.common.io.FileUtility; import org.junit.Test; +import java.io.File; + import static org.junit.Assert.*; public class FormMetadataReplicatorTest { @@ -22,6 +25,13 @@ public class FormMetadataReplicatorTest { } + @Test + public void testFileExtension(){ + String fileName="formcopyForm.frm.en.lres"; + File file=new File(fileName); + System.out.println(FileUtility.getFileExtension(fileName)); + } + public void testException() { try { source = "noah try"; -- Gitee From 36ab2f98b84e989a819ef80048423fcbb626eae8 Mon Sep 17 00:00:00 2001 From: guozhiqi Date: Wed, 8 Feb 2023 16:54:26 +0800 Subject: [PATCH 08/10] =?UTF-8?q?=E8=A1=A8=E5=8D=95=E5=A4=8D=E5=88=B6--?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=A1=A8=E5=8D=95=E9=85=8D=E7=BD=AE=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E5=A4=8D=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entity/ResourceMetadataType.java | 23 +++++++ .../metadata/formdom/FormOptions.java | 14 ++++ .../replication/FormMetadataReplicator.java | 64 ++++++++++++++++--- .../FormMetadataReplicatorTest.java | 30 +++++++-- 4 files changed, 116 insertions(+), 15 deletions(-) diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/entity/ResourceMetadataType.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/entity/ResourceMetadataType.java index 1c922235..2f8ed725 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/entity/ResourceMetadataType.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/entity/ResourceMetadataType.java @@ -14,6 +14,11 @@ public enum ResourceMetadataType { public String getSuffix() { return ".res"; } + + @Override + public String getSuffixWithoutResExtension() { + return ""; + } }, /** * 英文 @@ -23,6 +28,11 @@ public enum ResourceMetadataType { public String getSuffix() { return ".en.lres"; } + + @Override + public String getSuffixWithoutResExtension() { + return ".en"; + } }, /** * 繁体中文 @@ -32,6 +42,11 @@ public enum ResourceMetadataType { public String getSuffix() { return ".zh-CHT.lres"; } + + @Override + public String getSuffixWithoutResExtension() { + return ".zh-CHT"; + } }; /** @@ -41,8 +56,16 @@ public enum ResourceMetadataType { */ public abstract String getSuffix(); + /** + * 获取不包含res后缀的名称 + * + * @return + */ + public abstract String getSuffixWithoutResExtension(); + /** * 构造对应的资源元数据的实际文件名称 + * * @param fileNameWithoutExtension * @return */ diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/formdom/FormOptions.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/formdom/FormOptions.java index eb6d80d4..6f042c77 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/formdom/FormOptions.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/formdom/FormOptions.java @@ -16,6 +16,19 @@ public class FormOptions { */ private String renderMode = "compile"; + /** + * 数据转换类型 + */ + private boolean paramTypeTransform; + + public boolean isParamTypeTransform() { + return paramTypeTransform; + } + + public void setParamTypeTransform(boolean paramTypeTransform) { + this.paramTypeTransform = paramTypeTransform; + } + public String getRenderMode() { return renderMode; } @@ -48,4 +61,5 @@ public class FormOptions { public boolean isEnableFormJieXi() { return "dynamic".equals(this.renderMode); } + } diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java index ba6ba041..488e04e2 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java @@ -1,6 +1,8 @@ package com.inspur.edp.web.formmetadata.replication; +import com.inspur.edp.i18n.resource.api.metadata.LinguisticResource; +import com.inspur.edp.i18n.resource.api.metadata.ResourceItem; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; import com.inspur.edp.lcm.metadata.api.entity.MetadataDto; import com.inspur.edp.web.common.entity.ResultCode; @@ -8,10 +10,12 @@ import com.inspur.edp.web.common.entity.ResultMessage; import com.inspur.edp.web.common.io.FileUtility; import com.inspur.edp.web.common.logger.WebLogger; import com.inspur.edp.web.common.metadata.MetadataUtility; +import com.inspur.edp.web.common.utility.StringUtility; import com.inspur.edp.web.formmetadata.entity.ResourceMetadataType; import com.inspur.edp.web.formmetadata.metadata.FormMetadataContent; import com.inspur.edp.web.formmetadata.metadata.FormMetadataContentService; import com.inspur.edp.web.formmetadata.metadata.formdom.FormDOM; +import org.apache.commons.lang3.StringUtils; /** * 表单元数据复制器 @@ -112,23 +116,63 @@ public class FormMetadataReplicator { } private static void copyResourceMetadataWithSpecificLanguage(MetadataReplicationContext context, GspMetadata sourceFormMetadata, GspMetadata replicateFormMetadata) { - String sourceEnResourceFileName = ResourceMetadataType.EN.getFileName(sourceFormMetadata.getHeader().getFileName()); - String targetEnResourceFileName = ResourceMetadataType.EN.getFileName(replicateFormMetadata.getHeader().getFileName()); - copyResourceMetadataWithSpecificLanguage(context, sourceFormMetadata, replicateFormMetadata, sourceEnResourceFileName, targetEnResourceFileName); - String sourceZH_CHTResourceFileName = ResourceMetadataType.ZH_CHT.getFileName(sourceFormMetadata.getHeader().getFileName()); - String targetZH_CHTResourceFileName = ResourceMetadataType.ZH_CHT.getFileName(replicateFormMetadata.getHeader().getFileName()); - copyResourceMetadataWithSpecificLanguage(context, sourceFormMetadata, replicateFormMetadata, sourceZH_CHTResourceFileName, targetZH_CHTResourceFileName); + String targetZHResourceFileName = ResourceMetadataType.ZH_CH.getFileName(sourceFormMetadata.getHeader().getFileName()); + if (!MetadataUtility.getInstance().isMetaDataExistsWithMetadataPathAndFileName(sourceFormMetadata.getRelativePath(), targetZHResourceFileName)) { + return; + } + + GspMetadata zhResourceMetadata = MetadataUtility.getInstance().getMetadata(targetZHResourceFileName, sourceFormMetadata.getRelativePath()); + + // 拷贝对应的资源元数据 + copyResourceMetadataWithSpecificLanguage(context, sourceFormMetadata, replicateFormMetadata, zhResourceMetadata, ResourceMetadataType.EN); + copyResourceMetadataWithSpecificLanguage(context, sourceFormMetadata, replicateFormMetadata, zhResourceMetadata, ResourceMetadataType.ZH_CHT); } - private static void copyResourceMetadataWithSpecificLanguage(MetadataReplicationContext context, GspMetadata sourceFormMetadata, GspMetadata replicateFormMetadata, String sourceResourceFileName, String targetResourceFileName) { + private static void copyResourceMetadataWithSpecificLanguage(MetadataReplicationContext context, GspMetadata sourceFormMetadata, + GspMetadata replicateFormMetadata, GspMetadata zhResourceMetadata, + ResourceMetadataType resourceMetadataType) { + String sourceResourceFileName = resourceMetadataType.getFileName(sourceFormMetadata.getHeader().getFileName()); + String targetResourceFileName = resourceMetadataType.getFileName(replicateFormMetadata.getHeader().getFileName()); + if (MetadataUtility.getInstance().isMetaDataExistsWithMetadataPathAndFileName(sourceFormMetadata.getRelativePath(), sourceResourceFileName)) { GspMetadata resourceMetadata = MetadataUtility.getInstance().getMetadata(sourceResourceFileName, sourceFormMetadata.getRelativePath()); - MetadataReplicationContext resourceContext = MetadataReplicationContextService.create(context.getSourceProjectName(), resourceMetadata, replicateFormMetadata.getHeader().getCode(), - replicateFormMetadata.getHeader().getName(), context.getSourceProjectName()); + MetadataReplicationContext resourceContext = MetadataReplicationContextService.create(context.getSourceProjectName(), resourceMetadata, replicateFormMetadata.getHeader().getCode() + resourceMetadataType.getSuffixWithoutResExtension(), + replicateFormMetadata.getHeader().getName() + resourceMetadataType.getSuffixWithoutResExtension(), context.getSourceProjectName()); resourceContext.setTargetFileName(targetResourceFileName); GspMetadata targetResourceMetadata = MetadataCloneManager.cloneMetadata(resourceContext); - MetadataUtility.getInstance().createMetadataIfNotExists(targetResourceMetadata); + + // 调整依赖的资源元数据参数 + LinguisticResource resourceContent = (LinguisticResource) targetResourceMetadata.getContent(); + resourceContent.getRefMetadataInfo().setId(zhResourceMetadata.getHeader().getId()); + resourceContent.getRefMetadataInfo().setCode(zhResourceMetadata.getHeader().getCode()); + resourceContent.getRefMetadataInfo().setName(zhResourceMetadata.getHeader().getName()); + resourceContent.getRefMetadataInfo().setFileName(zhResourceMetadata.getHeader().getFileName()); + + String resourceNameSpace = targetResourceMetadata.getHeader().getNameSpace(); + // 调整对应的命令空间参数 + if (resourceContent.getStringResources() != null) { + for (ResourceItem item : resourceContent.getStringResources()) { + if (item.getId().indexOf(resourceNameSpace) == 0) { + // 表示以namespace 开头 主要是调整中间的表单code部分 + // Inspur.GS.noahtest.runtimehelp.formcopy.formcopy.Front.formcopyForm.Form.root-layout + String subResult = item.getId().substring(resourceNameSpace.length() + 1); + if (StringUtility.isNotNullOrEmpty(subResult)) { + String[] splitResult = subResult.split(java.util.regex.Pattern.quote("."), -1); + if (splitResult != null && splitResult.length > 0) { + splitResult[0] = replicateFormMetadata.getHeader().getCode(); + // 重新进行组合 + String generateResult = resourceNameSpace + "." + StringUtils.join(splitResult, "."); + item.setId(generateResult); + } + } + + } + } + } + + + // MetadataUtility.getInstance().createMetadataIfNotExists(targetResourceMetadata); MetadataUtility.getInstance().saveMetadata(targetResourceMetadata); } } diff --git a/web-form-metadata/src/test/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicatorTest.java b/web-form-metadata/src/test/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicatorTest.java index f308f3b8..80757619 100644 --- a/web-form-metadata/src/test/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicatorTest.java +++ b/web-form-metadata/src/test/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicatorTest.java @@ -1,9 +1,11 @@ package com.inspur.edp.web.formmetadata.replication; import com.inspur.edp.web.common.io.FileUtility; +import org.apache.commons.lang3.StringUtils; import org.junit.Test; import java.io.File; +import java.util.Arrays; import static org.junit.Assert.*; @@ -14,10 +16,10 @@ public class FormMetadataReplicatorTest { @Test public void test() { try { - String source=""; + String source = ""; this.testException(); } catch (Exception ex) { - source=""; + source = ""; System.out.println("出现了异常 " + ex.getMessage()); } @@ -26,9 +28,27 @@ public class FormMetadataReplicatorTest { } @Test - public void testFileExtension(){ - String fileName="formcopyForm.frm.en.lres"; - File file=new File(fileName); + public void testSubString() { + String strNameSpace = "Inspur.GS.noahtest.runtimehelp.formcopy.formcopy.Front"; + String resource = "Inspur.GS.noahtest.runtimehelp.formcopy.formcopy.Front.formcopyForm.Form.root-component"; + System.out.println(resource.substring(strNameSpace.length()) + 1); + + String subStringResult = resource.substring(strNameSpace.length() + 1); + String[] arr = subStringResult.split(java.util.regex.Pattern.quote("."), -1); + System.out.println(arr.length); + System.out.println(Arrays.toString(arr)); + + System.out.println(StringUtils.join(arr,".")); + + String result = strNameSpace + StringUtils.join(arr, "."); + System.out.println(result); + + } + + @Test + public void testFileExtension() { + String fileName = "formcopyForm.frm.en.lres"; + File file = new File(fileName); System.out.println(FileUtility.getFileExtension(fileName)); } -- Gitee From 0930a4b85a8f77e7102947299be6c7423d73b4be Mon Sep 17 00:00:00 2001 From: guozhiqi Date: Wed, 15 Feb 2023 17:05:11 +0800 Subject: [PATCH 09/10] =?UTF-8?q?=E5=85=83=E6=95=B0=E6=8D=AE=E6=89=BE?= =?UTF-8?q?=E4=B8=8D=E5=88=B0=E5=A2=9E=E5=8A=A0=E8=87=AA=E5=AE=9A=E4=B9=89?= =?UTF-8?q?=E5=BC=82=E5=B8=B8=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../metadata/MetadataGetterParameter.java | 139 ++++++++++++++++++ .../web/common/metadata/MetadataTypeEnum.java | 105 +++++++++++++ .../web/common/metadata/MetadataUtility.java | 66 +++++---- .../web/common/metadata/WebMetadataUri.java | 56 +++++++ .../designschema/generator/FieldBuilder.java | 29 +++- .../generator/FieldTypeBuilder.java | 26 +++- .../designschema/generator/SchemaBuilder.java | 21 +++ .../synchronization/FormMetadataUpdate.java | 29 +++- .../event/FormMetadataSaveEventListener.java | 29 +++- .../event/WebCommandMetadataDelete.java | 33 ++++- .../formmetadata/metadata/module/Module.java | 33 ++++- .../replication/FormMetadataCmdManager.java | 75 ++++------ ...rmMetadataCmpSourceTsFileCloneManager.java | 75 ++++++++++ .../replication/FormMetadataReplicator.java | 32 +++- .../replication/FormMetadataSmManager.java | 24 ++- .../replication/FormMetadataVoManager.java | 25 +++- .../service/FormMetadataRTService.java | 24 ++- .../service/FormMetataService.java | 24 ++- .../MetadataChangeStepExecuteImpl.java | 24 ++- .../FormMetadataDebugUriWithMobile.java | 22 +++ .../pageflow/PageFlowMetadataManager.java | 25 +++- .../SourceCodeMobileOperation.java | 20 +++ .../sourcegenerate/SourceCodePCOperation.java | 20 +++ .../metadata/service/RouteMetataService.java | 27 +++- 24 files changed, 881 insertions(+), 102 deletions(-) create mode 100644 web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataGetterParameter.java create mode 100644 web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataTypeEnum.java create mode 100644 web-common/src/main/java/com/inspur/edp/web/common/metadata/WebMetadataUri.java create mode 100644 web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmpSourceTsFileCloneManager.java diff --git a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataGetterParameter.java b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataGetterParameter.java new file mode 100644 index 00000000..c53a07d3 --- /dev/null +++ b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataGetterParameter.java @@ -0,0 +1,139 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.common.metadata; + +import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; +import lombok.Data; +import lombok.Getter; +import lombok.Setter; + +public class MetadataGetterParameter { + private MetadataGetterParameter(String targetMetadataId, String spacePath) { + this.targetMetadataId = targetMetadataId; + this.targetMetadataSpacePath = spacePath; + } + + + /** + * 构造对应的参数实例 + * + * @param targetMetadataId + * @param spacePath + * @return + */ + public static MetadataGetterParameter getNewInstance(String targetMetadataId, String spacePath) { + return new MetadataGetterParameter(targetMetadataId, spacePath); + } + + /** + * 引用目标元数据的元数据id + */ + @Getter + @Setter + private String sourceMetadataId; + + /** + * 引用目标元数据的元数据code + */ + @Getter + @Setter + private String sourceMetadataCode; + + /** + * 源数据 元数据类型 + */ + @Getter + @Setter + private MetadataTypeEnum sourceMetadataType = MetadataTypeEnum.Frm; + + /** + * 引用目标元数据的元数据path + */ + @Getter + @Setter + private String sourceMetadataPath; + + /** + * 源metadata nameSpace + */ + @Getter + @Setter + private String sourceMetadataNameSpace; + + /** + * 目标元数据的元数据uri + */ + @Getter + private String targetMetadataId; + + /** + * 目标元数据 类型 + */ + @Getter + @Setter + private MetadataTypeEnum targetMetadataType; + + /** + * 目标元数据的 path + */ + @Getter + private String targetMetadataSpacePath; + + /** + * 元数据找不到自定义异常提示 应对的是sourceMetadataCode + */ + @Getter + @Setter + private String targetMetadataNotFoundMessage; + + /** + * 仅包含目标元数据的id + * + * @return + */ + public WebMetadataUri getTargetMetadataUri() { + return new WebMetadataUri(this.getTargetMetadataId()); + } + + /** + * 构造source MetadataUri参数 + * + * @return + */ + public WebMetadataUri getSourceMetadataUri() { + if (this.getSourceMetadataType() == null) { + this.setSourceMetadataType(MetadataTypeEnum.Frm); + } + return new WebMetadataUri(this.getSourceMetadataId(), this.getSourceMetadataCode(), this.getSourceMetadataType().getCode(), this.getSourceMetadataNameSpace()); + } + + /** + * 通过设置sourceMetadata 进行参数整体赋值 + * + * @param gspMetadata + * @param sourceMetadataType + */ + public void setSourceMetadata(GspMetadata gspMetadata, MetadataTypeEnum sourceMetadataType) { + this.sourceMetadataId = gspMetadata.getHeader().getId(); + this.sourceMetadataPath = gspMetadata.getRelativePath(); + this.sourceMetadataNameSpace = gspMetadata.getHeader().getNameSpace(); + this.sourceMetadataCode = gspMetadata.getHeader().getCode(); + this.sourceMetadataType = sourceMetadataType; + } +} diff --git a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataTypeEnum.java b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataTypeEnum.java new file mode 100644 index 00000000..f9cd9e0b --- /dev/null +++ b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataTypeEnum.java @@ -0,0 +1,105 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.common.metadata; + +/** + * 定义元数据类型枚举参数 + * + * @author guozhiqi + */ +public enum MetadataTypeEnum { + /** + * 表单元数据 + */ + Frm { + @Override + public String getCode() { + return "Form"; + } + }, + /** + * eapi 元数据 + */ + Eapi { + @Override + public String getCode() { + return "Eapi"; + } + }, + /** + * 资源元数据 + */ + Resource { + @Override + public String getCode() { + return "Resource"; + } + }, + /** + * 状态机元数据 + */ + StateMachine { + @Override + public String getCode() { + return "StateMachine"; + } + }, + /** + * 命令元数据 + */ + Command { + @Override + public String getCode() { + return "Command"; + } + }, + /** + * 页面流 + */ + Route { + @Override + public String getCode() { + return "PageFlow"; + } + }, + Component { + @Override + public String getCode() { + return "Component"; + } + }, + ViewModel { + @Override + public String getCode() { + return "ViewModel"; + } + }; + + /** + * 获取对应元数据的code + * + * @return + */ + public abstract String getCode(); + + @Override + public String toString() { + return this.getCode(); + } +} diff --git a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java index cfb679c3..d98f9bf0 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.common.metadata; @@ -136,10 +154,6 @@ public final class MetadataUtility { return this.getMetadataService().loadMetadata(metadataFileName, metadataPath); } - public GspMetadata getMetadataWithIdAndPath(String metadataId, String spacePath) { - return this.getMetadataService().getRefMetadata(spacePath, metadataId); - } - /** * 判断指定路径 指定文件名称元数据是否存在 * @@ -185,12 +199,25 @@ public final class MetadataUtility { if (executeEnvironment.equals(ExecuteEnvironment.Design)) { // 设计时元数据获取 - return this.getRefCommonService().getRefMetadata(new MetadataURI(metadataId), null, null); + return this.getMetadataInDesign(new MetadataURI(metadataId), null, null); } else { return this.getCustomizationService().getMetadata(metadataId); } } + + /** + * @param metadataGetterParameter + * @return + */ + public GspMetadata getMetadataInDesign(MetadataGetterParameter metadataGetterParameter) { + return this.getMetadataInDesign(metadataGetterParameter.getTargetMetadataUri(), metadataGetterParameter.getSourceMetadataUri(), metadataGetterParameter.getTargetMetadataSpacePath()); + } + + public GspMetadata getMetadataInDesign(MetadataURI targetMetadataUri, MetadataURI sourceMetadataUri, String projectPath) { + return this.getRefCommonService().getRefMetadata(targetMetadataUri, sourceMetadataUri, projectPath); + } + /** * 运行时获取元数据接口方法 * 作为公共方法 会在别处进行使用 定义后不允许更改 @@ -407,7 +434,15 @@ public final class MetadataUtility { switch (item.getItemType()) { case MethodRefer: CmpMethodRefering methodReferingItem = (CmpMethodRefering) item; - GspMetadata webComponentMetadata = getMetadataWithIdAndPath(methodReferingItem.getComponentId(), commandMetadata.getRelativePath()); + MetadataGetterParameter metadataGetterParameter = MetadataGetterParameter.getNewInstance(methodReferingItem.getComponentId(), commandMetadata.getRelativePath()); + metadataGetterParameter.setSourceMetadataId(commandMetadata.getHeader().getId()); + metadataGetterParameter.setSourceMetadataType(MetadataTypeEnum.Command); + metadataGetterParameter.setSourceMetadataCode(commandMetadata.getHeader().getCode()); + metadataGetterParameter.setSourceMetadataPath(commandMetadata.getRelativePath()); + metadataGetterParameter.setSourceMetadataNameSpace(commandMetadata.getHeader().getNameSpace()); + metadataGetterParameter.setTargetMetadataType(MetadataTypeEnum.Component); + + GspMetadata webComponentMetadata = getMetadataInDesign(metadataGetterParameter); if (!componentMetadataCollection.containsKey(methodReferingItem.getComponentId())) { if (componentCacheList != null && componentCacheList.containsKey(methodReferingItem.getComponentId())) { @@ -440,25 +475,6 @@ public final class MetadataUtility { } } - public String getTypeScriptFileName(GspMetadata weComponentMetadata) { - // 最理想的方式:路径来自webcmp构件路径,名称来自path(即元数据的Source属性) - // 先用webcmp的文件名构造,后续可以考虑调整 - - String path = weComponentMetadata.getRelativePath(); - String cmpFileName = weComponentMetadata.getHeader().getFileName(); - // 后缀为.webcmp - int suffixIndex = cmpFileName.lastIndexOf(".webcmp"); - String fileName; - if (suffixIndex > 0 && suffixIndex + 7 == cmpFileName.length()) { - fileName = cmpFileName.substring(0, suffixIndex); - } else if (cmpFileName.contains(weComponentMetadata.getHeader().getCode())) { - fileName = cmpFileName; - } else { - throw new RuntimeException("获取ts文件名出错,web构件上获取的文件名不对。"); - } - return String.format("%1$s/%2$s.ts", path, fileName); - } - /** * 获取开发期的根路径 * diff --git a/web-common/src/main/java/com/inspur/edp/web/common/metadata/WebMetadataUri.java b/web-common/src/main/java/com/inspur/edp/web/common/metadata/WebMetadataUri.java new file mode 100644 index 00000000..2b5cea73 --- /dev/null +++ b/web-common/src/main/java/com/inspur/edp/web/common/metadata/WebMetadataUri.java @@ -0,0 +1,56 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.common.metadata; + +import com.inspur.edp.lcm.metadata.api.entity.uri.MetadataURI; +import com.inspur.edp.web.common.utility.StringUtility; +import lombok.Data; + +/** + * 继承 MetadataUri 主要目的是重写其中的输出方法 + * + * @author guozhiqi + */ +@Data +public class WebMetadataUri extends MetadataURI { + /** + * 元数据找不到自定义异常 使用此 覆盖父类 + */ + private String customMetadataNotFoundMessage; + + public WebMetadataUri() { + super(); + } + + public WebMetadataUri(String id) { + super(id); + } + + public WebMetadataUri(String id, String code, String type, String nameSpace) { + super(id, code, type, nameSpace); + } + + @Override + public String getURIDesc() { + if (!StringUtility.isNullOrEmpty(this.getCustomMetadataNotFoundMessage())) { + return this.getCustomMetadataNotFoundMessage(); + } + return super.getURIDesc(); + } +} diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/FieldBuilder.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/FieldBuilder.java index 5067733c..b0478a33 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/FieldBuilder.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/FieldBuilder.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.designschema.generator; import com.inspur.edp.bef.bizentity.GspBizEntityElement; @@ -15,6 +33,9 @@ import com.inspur.edp.metadata.rtcustomization.api.CustomizationService; import com.inspur.edp.udt.designtime.api.entity.SimpleDataTypeDef; import com.inspur.edp.udt.designtime.api.nocode.BusinessField; import com.inspur.edp.udt.designtime.api.nocode.IBusinessFieldService; +import com.inspur.edp.web.common.environment.ExecuteEnvironment; +import com.inspur.edp.web.common.metadata.MetadataGetterParameter; +import com.inspur.edp.web.common.metadata.MetadataUtility; import com.inspur.edp.web.common.utility.StringUtility; import com.inspur.edp.web.designschema.elements.ComplexField; import com.inspur.edp.web.designschema.elements.Field; @@ -620,11 +641,11 @@ public class FieldBuilder { private GspMetadata getMetadata(String id, boolean isRuntime) { if (isRuntime) { - CustomizationService customizationService = SpringBeanUtils.getBean(CustomizationService.class); - return customizationService.getMetadata(id); + return MetadataUtility.getInstance().getMetadataWithEnvironment(id, ExecuteEnvironment.Runtime, false); } else { - RefCommonService refMetadataService = SpringBeanUtils.getBean(RefCommonService.class); - return refMetadataService.getRefMetadata(id); + MetadataGetterParameter metadataGetterParameter = MetadataGetterParameter.getNewInstance(id, null); + metadataGetterParameter.setTargetMetadataNotFoundMessage("更新表单schema,关联字段元数据找不到,请修正。对应字段元数据id为:" + id); + return MetadataUtility.getInstance().getMetadataInDesign(metadataGetterParameter); } } } diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/FieldTypeBuilder.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/FieldTypeBuilder.java index 3d44b983..75ac331d 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/FieldTypeBuilder.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/FieldTypeBuilder.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.designschema.generator; import com.inspur.edp.cef.designtime.api.collection.GspAssociationCollection; @@ -5,13 +23,14 @@ import com.inspur.edp.cef.designtime.api.element.GspAssociation; import com.inspur.edp.cef.designtime.api.element.GspElementObjectType; import com.inspur.edp.cef.designtime.api.element.GspEnumValue; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; -import com.inspur.edp.lcm.metadata.api.service.RefCommonService; import com.inspur.edp.metadata.rtcustomization.api.CustomizationService; import com.inspur.edp.udt.designtime.api.entity.ComplexDataTypeDef; import com.inspur.edp.udt.designtime.api.entity.SimpleDataTypeDef; import com.inspur.edp.udt.designtime.api.entity.UnifiedDataTypeDef; import com.inspur.edp.udt.designtime.api.nocode.BusinessField; import com.inspur.edp.udt.designtime.api.nocode.IBusinessFieldService; +import com.inspur.edp.web.common.metadata.MetadataGetterParameter; +import com.inspur.edp.web.common.metadata.MetadataUtility; import com.inspur.edp.web.designschema.elements.Field; import com.inspur.edp.web.designschema.elements.SimpleField; import com.inspur.edp.web.designschema.elements.type.*; @@ -213,8 +232,9 @@ public class FieldTypeBuilder { CustomizationService customizationService = SpringBeanUtils.getBean(CustomizationService.class); typeMetadata = customizationService.getMetadata(uri); } else { - RefCommonService refMetadataService = SpringBeanUtils.getBean(RefCommonService.class); - typeMetadata = refMetadataService.getRefMetadata(uri); + MetadataGetterParameter metadataGetterParameter = MetadataGetterParameter.getNewInstance(uri, null); + metadataGetterParameter.setTargetMetadataNotFoundMessage("更新表单Schema,获取UDT字段元数据失败,元数据不存在。对应元数据id为:" + uri); + typeMetadata = MetadataUtility.getInstance().getMetadataInDesign(metadataGetterParameter); } if (typeMetadata == null) { throw new RuntimeException(String.format("未获取到id为'%1$s'的统一数据类型(UDT)元数据。", uri)); diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/SchemaBuilder.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/SchemaBuilder.java index 36b92f6b..7387164c 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/SchemaBuilder.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/SchemaBuilder.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.designschema.generator; import com.inspur.edp.formserver.viewmodel.GspViewModel; @@ -7,6 +25,9 @@ import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; +/** + * @author guozhiqi + */ public class SchemaBuilder { public final Schema build(GspViewModel model) { return this.buildWithScene(model, ""); diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/FormMetadataUpdate.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/FormMetadataUpdate.java index fca7dfb9..a7259652 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/FormMetadataUpdate.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/FormMetadataUpdate.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.designschema.synchronization; import com.fasterxml.jackson.core.type.TypeReference; @@ -5,7 +23,10 @@ import com.fasterxml.jackson.databind.JsonNode; import com.inspur.edp.formserver.viewmodel.GspViewModel; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; import com.inspur.edp.lcm.metadata.api.service.MetadataService; -import com.inspur.edp.lcm.metadata.api.service.RefCommonService; +import com.inspur.edp.web.common.environment.ExecuteEnvironment; +import com.inspur.edp.web.common.metadata.MetadataGetterParameter; +import com.inspur.edp.web.common.metadata.MetadataTypeEnum; +import com.inspur.edp.web.common.metadata.MetadataUtility; import com.inspur.edp.web.common.serialize.SerializeUtility; import com.inspur.edp.web.designschema.elements.Schema; import com.inspur.edp.web.formmetadata.metadata.FormMetadataContent; @@ -39,8 +60,10 @@ public class FormMetadataUpdate { Synchronizer synchronizer = new Synchronizer(); for (Schema schema : schemaList) { if ("vo".equals(schema.getSourceType())) { - RefCommonService metadataService = SpringBeanUtils.getBean(RefCommonService.class); - GspMetadata metadata = metadataService.getRefMetadata(schema.getId()); + MetadataGetterParameter metadataGetterParameter = MetadataGetterParameter.getNewInstance(schema.getId(), null); + metadataGetterParameter.setTargetMetadataNotFoundMessage("根据表单元数据获取VO元数据为空,请检查表单元数据module>schemas>id 是否正确,此参数对应VO元数据id参数"); + GspMetadata metadata = MetadataUtility.getInstance().getMetadataInDesign(metadataGetterParameter); + GspViewModel viewObject = (GspViewModel) ((metadata.getContent() instanceof GspViewModel) ? metadata.getContent() : null); metadata.setContent(synchronizer.synchronize(formObject, schema, viewObject)); MetadataService service = SpringBeanUtils.getBean(MetadataService.class); diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/FormMetadataSaveEventListener.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/FormMetadataSaveEventListener.java index 476652ee..b338e904 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/FormMetadataSaveEventListener.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/FormMetadataSaveEventListener.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.formmetadata.event; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; @@ -8,6 +26,8 @@ import com.inspur.edp.lcm.metadata.spi.event.MetadataEventListener; import com.inspur.edp.web.common.entity.TerminalType; import com.inspur.edp.web.common.io.FileUtility; import com.inspur.edp.web.common.logger.WebLogger; +import com.inspur.edp.web.common.metadata.MetadataGetterParameter; +import com.inspur.edp.web.common.metadata.MetadataTypeEnum; import com.inspur.edp.web.common.metadata.MetadataUtility; import com.inspur.edp.web.common.serialize.SerializeUtility; import com.inspur.edp.web.formmetadata.entity.ResourceMetadataType; @@ -87,7 +107,7 @@ public class FormMetadataSaveEventListener implements MetadataEventListener { String formMetadataStr = ((FormMetadataContent) metadataEventArgs.getMetadata().getContent()).getContents().toString(); FormDOM formDOM = SerializeUtility.getInstance().deserialize(formMetadataStr, FormDOM.class); if (formDOM.getModule().getSchemas() != null && formDOM.getModule().getSchemas().size() > 0) { - deleteRelateEapiMetadata(projectPath, formDOM); + deleteRelateEapiMetadata(projectPath, formDOM, metadataEventArgs.getMetadata()); } // 获取待删除的命令元数据 命令构件 ts文件 @@ -267,11 +287,14 @@ public class FormMetadataSaveEventListener implements MetadataEventListener { * @param projectPath * @param formDOM */ - private void deleteRelateEapiMetadata(String projectPath, FormDOM formDOM) { + private void deleteRelateEapiMetadata(String projectPath, FormDOM formDOM, GspMetadata sourceFormMetadata) { Object objEapiId = formDOM.getModule().getSchemas().get(0).get("eapiId"); if (objEapiId != null) { String strEapiId = objEapiId.toString(); - GspMetadata eapiMetadata = MetadataUtility.getInstance().getMetadataWithIdAndPath(strEapiId, projectPath); + + MetadataGetterParameter metadataGetterParameter = MetadataGetterParameter.getNewInstance(strEapiId, projectPath); + metadataGetterParameter.setSourceMetadata(sourceFormMetadata, MetadataTypeEnum.Frm); + GspMetadata eapiMetadata = MetadataUtility.getInstance().getMetadataInDesign(metadataGetterParameter); if (eapiMetadata != null) { // eapi 单独删除 MetadataUtility.getInstance().getMetadataService().deleteMetadata(eapiMetadata.getRelativePath(), eapiMetadata.getHeader().getFileName()); diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/WebCommandMetadataDelete.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/WebCommandMetadataDelete.java index d23abf3e..b090dc0d 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/WebCommandMetadataDelete.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/WebCommandMetadataDelete.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.formmetadata.event; import com.google.common.base.Strings; @@ -7,6 +25,7 @@ import com.inspur.edp.lcm.metadata.api.entity.MetadataProject; import com.inspur.edp.web.command.component.metadata.*; import com.inspur.edp.web.common.environment.ExecuteEnvironment; import com.inspur.edp.web.common.logger.WebLogger; +import com.inspur.edp.web.common.metadata.MetadataGetterParameter; import com.inspur.edp.web.common.metadata.MetadataUtility; import com.inspur.edp.web.common.utility.StringUtility; import com.inspur.edp.web.formmetadata.metadata.formdom.FormDOM; @@ -109,7 +128,9 @@ class WebCommandMetadataDelete { } private WebCommandsMetadata getWebCommands(String id) { - GspMetadata webCommandMetadata = MetadataUtility.getInstance().getMetadataWithEnvironment(id, ExecuteEnvironment.Design, false); + MetadataGetterParameter metadataGetterParameter = MetadataGetterParameter.getNewInstance(id, null); + metadataGetterParameter.setTargetMetadataNotFoundMessage("获取命令元数据为空,对应元数据id为:" + id); + GspMetadata webCommandMetadata = MetadataUtility.getInstance().getMetadataInDesign(metadataGetterParameter); if (webCommandMetadata == null) { return null; } @@ -117,11 +138,13 @@ class WebCommandMetadataDelete { } public WebComponentMetadata getComponentMetadata(String id) { - GspMetadata webComponentMetadata = MetadataUtility.getInstance().getMetadataWithEnvironment(id, ExecuteEnvironment.Design, false); + MetadataGetterParameter metadataGetterParameter = MetadataGetterParameter.getNewInstance(id, null); + metadataGetterParameter.setTargetMetadataNotFoundMessage("获取WebComponent元数据为空,对应元数据id为:" + id); + GspMetadata webComponentMetadata = MetadataUtility.getInstance().getMetadataInDesign(metadataGetterParameter); if (webComponentMetadata == null) { throw new RuntimeException("load webComponent metadata is null,the metaDataId is " + id); } - return (WebComponentMetadata) webComponentMetadata.getContent(); + return (WebComponentMetadata) webComponentMetadata.getContent(); } private void analysisComponentMetadata(WebCommandsMetadata metadata, HashMap cmpList, @@ -219,7 +242,9 @@ class WebCommandMetadataDelete { throw new Exception("获取ts文件名出错,对应的web构件id不能为空。"); } - GspMetadata metadata = MetadataUtility.getInstance().getMetadataWithEnvironment(cmpId, ExecuteEnvironment.Design, false); + MetadataGetterParameter metadataGetterParameter = MetadataGetterParameter.getNewInstance(cmpId, null); + metadataGetterParameter.setTargetMetadataNotFoundMessage("获取web构件元数据为空,对应元数据id为:" + cmpId); + GspMetadata metadata = MetadataUtility.getInstance().getMetadataInDesign(metadataGetterParameter); if (metadata != null) { String path = metadata.getRelativePath(); diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/module/Module.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/module/Module.java index ddc2135a..9c9b2b35 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/module/Module.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/module/Module.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.formmetadata.metadata.module; import com.inspur.edp.web.formmetadata.metadata.i18nsetting.I18nSetting; @@ -70,7 +88,7 @@ public class Module { private String creator; private String creationDate; private String updateVersion; - private String showTitle; + private boolean showTitle; private String bootstrap; public String getCreator() { @@ -97,11 +115,11 @@ public class Module { this.updateVersion = updateVersion; } - public String getShowTitle() { + public boolean getShowTitle() { return showTitle; } - public void setShowTitle(String showTitle) { + public void setShowTitle(boolean showTitle) { this.showTitle = showTitle; } @@ -350,6 +368,15 @@ public class Module { this.declarations = declarations; } + private String metadataId; + + private String getMetadataId() { + return this.metadataId; + } + + public void setMetadataId(String metadataId) { + this.metadataId = metadataId; + } private HashMap customClass; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java index 12fdc4da..64f76ee8 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.formmetadata.replication; import com.inspur.edp.cdp.web.component.metadata.define.WebComponentMetadata; @@ -9,6 +27,8 @@ import com.inspur.edp.web.command.component.metadata.WebCommandsMetadata; import com.inspur.edp.web.common.GSPException; import com.inspur.edp.web.common.io.FileUtility; import com.inspur.edp.web.common.logger.WebLogger; +import com.inspur.edp.web.common.metadata.MetadataGetterParameter; +import com.inspur.edp.web.common.metadata.MetadataTypeEnum; import com.inspur.edp.web.common.metadata.MetadataUtility; import com.inspur.edp.web.common.serialize.SerializeUtility; import com.inspur.edp.web.common.utility.StringUtility; @@ -41,14 +61,18 @@ public class FormMetadataCmdManager { WebLogger.Instance.info("表单元数据复制,webcmds节点下,对应的id参数为空。完整的命令信息:" + webcmd); continue; } - GspMetadata webCmdMetadata = MetadataUtility.getInstance().getMetadataWithIdAndPath(webcmdId, sourceFormMetadata.getRelativePath()); + MetadataGetterParameter metadataGetterParameter = MetadataGetterParameter.getNewInstance(webcmdId, sourceFormMetadata.getRelativePath()); + metadataGetterParameter.setSourceMetadata(sourceFormMetadata, MetadataTypeEnum.Frm); + + GspMetadata webCmdMetadata = MetadataUtility.getInstance().getMetadataInDesign(metadataGetterParameter); if (webCmdMetadata == null) { throw new GSPException("Web_Replicate", "复制表单元数据时,获取命令构件失败。待获取命令构件ID是:" + webcmdId); } WebCommandsMetadata webCommandMetadataContent = (WebCommandsMetadata) webCmdMetadata.getContent(); // 复制自定义命令构件及关联服务构件 - if (webCommandMetadataContent != null && webCommandMetadataContent.getExtendProperty() != null && !webCommandMetadataContent.getExtendProperty().isCommon()) { + if (webCommandMetadataContent != null && webCommandMetadataContent.getExtendProperty() != null && + !webCommandMetadataContent.getExtendProperty().isCommon()) { // 拷贝这个命令构件 MetadataDto webCommandMetadataDto = new MetadataDto(); // TODO:如何保证正确替换code和name @@ -72,18 +96,15 @@ public class FormMetadataCmdManager { webcmd.put("id", replicateWebCommandMetadata.getHeader().getId()); webcmd.put("name", replicateWebCommandMetadata.getHeader().getFileName()); - // TODO: 具体化实现细节,避免性能问题 // 更新ViewModels中关联webcmd String viewModelCollectionStr = SerializeUtility.getInstance().serialize(replicateFormDOM.getModule().getviewmodels(), false); // 将viewModel中 替换webCmd viewModelCollectionStr = viewModelCollectionStr.replace(oldWebCmdId, webcmd.get("id").toString()); + replicateFormDOM.getModule().setviewmodels(SerializeUtility.getInstance().deserialize(viewModelCollectionStr, ArrayList.class)); - ArrayList> temp = new ArrayList<>(); - replicateFormDOM.getModule().setviewmodels(SerializeUtility.getInstance().deserialize(viewModelCollectionStr, temp.getClass())); - //防止找不到Web构件 - String sourceProjectPath = context.getSourceMetadata().getRelativePath(); //统一使用源工程路径查找 - replicateWebCommandMetadata.setRelativePath(sourceProjectPath); + replicateWebCommandMetadata.setRelativePath(context.getSourceMetadata().getRelativePath()); + // 查找自定义命令构件中使用的服务构件 MetadataUtility.getInstance().getReferenceComponentMetadata(replicateWebCommandMetadata, FormMetadataCmdManager::UpdateWebComponentMetadata, context); @@ -142,47 +163,11 @@ public class FormMetadataCmdManager { methodReferingItem.setComponentName(replicateWebComponentMetadata.getHeader().getName()); methodReferingItem.setComponentPath(replicateWebComponentMetadata.getRelativePath()); - // 获取服务构件关联的文件 - String path = componentMetadataContent.getSource(); - //更新path - if (!path.equals(MetadataUtility.getInstance().getTypeScriptFileName(componentMetadata))) { - path = MetadataUtility.getInstance().getTypeScriptFileName(componentMetadata); - componentMetadataContent.setSource(FileUtility.getPlatformIndependentPath(path)); - } - componentMetadataContent.setName(commandMetadata.getHeader().getName()); // 拷贝服务构件关联的文件(.ts文件) - String absolutePath = MetadataUtility.getInstance().getAbsolutePath(path); - String oldFileContent = FileUtility.readAsString(absolutePath); - - // 更新服务构件 - String targetPath = path; - if (!sourceProjectName.equals(targetMetadataDescription.getProjectName())) { - targetPath = targetPath.replace(sourceProjectName, targetMetadataDescription.getProjectName()); - } - - String updateAbsolutPath = MetadataUtility.getInstance().getAbsolutePath(targetPath); - updateAbsolutPath = updateAbsolutPath.replace(componentMetadata.getHeader().getCode(), replicateWebComponentMetadata.getHeader().getCode()); - - File file = new File(updateAbsolutPath); - String filePath = file.getParent(); - String fileName = file.getName(); - - TsFileService tsFileService = SpringBeanUtils.getBean(TsFileService.class); - String oldTsClassName = tsFileService.getTsClassNameByPath(absolutePath); - String newTsClassName = tsFileService.getTsClassNameByPath(fileName); - oldFileContent = oldFileContent.replace(oldTsClassName, newTsClassName); - - FileUtility.writeFile(filePath, fileName, oldFileContent); - - // 更新服务构件 - WebComponentMetadata replicateComponentMetadataContent = (WebComponentMetadata) replicateWebComponentMetadata.getContent(); - replicateComponentMetadataContent.setSource(FileUtility.getPlatformIndependentPath(FileUtility.combine(new File(targetPath).getParent(), fileName))); - // 调整 webComponent中的扩展 ts中的class名称 - replicateWebComponentMetadata.setExtendProperty(replicateWebComponentMetadata.getExtendProperty().replace(oldTsClassName, newTsClassName)); - replicateComponentMetadataContent.setClassName(newTsClassName); + FormMetadataCmpSourceTsFileCloneManager.copy(componentMetadataContent, sourceProjectName, targetMetadataDescription.getProjectName(), componentMetadata, replicateWebComponentMetadata); MetadataUtility.getInstance().saveMetadata(replicateWebComponentMetadata); } diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmpSourceTsFileCloneManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmpSourceTsFileCloneManager.java new file mode 100644 index 00000000..4afc888f --- /dev/null +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmpSourceTsFileCloneManager.java @@ -0,0 +1,75 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.formmetadata.replication; + +import com.inspur.edp.cdp.web.component.metadata.define.WebComponentMetadata; +import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; +import com.inspur.edp.web.common.io.FileUtility; +import com.inspur.edp.web.common.metadata.MetadataUtility; +import com.inspur.edp.web.tsfile.api.service.TsFileService; +import io.iec.edp.caf.commons.utils.SpringBeanUtils; + +import java.io.File; + +/** + * 表单构件关联的ts 文件拷贝 + * + * @author guozhiqi + */ +public class FormMetadataCmpSourceTsFileCloneManager { + public static void copy(WebComponentMetadata webComponentMetadata, String sourceProjectName, String targetProjectName, GspMetadata sourceComponentMetadata, GspMetadata replicatedWebComponentMetadata) { + String path = webComponentMetadata.getSource(); + String absolutePath = MetadataUtility.getInstance().getAbsolutePath(path); + + // 如果文件不存在 + if (!FileUtility.exists(absolutePath)) { + return; + } + + String tsSourceFileContent = FileUtility.readAsString(absolutePath); + + // 更新服务构件 + String targetPath = path; + if (!sourceProjectName.equals(targetProjectName)) { + // 调整工程路径参数 + targetPath = targetPath.replace(sourceProjectName, targetProjectName); + } + + String updateAbsolutPath = MetadataUtility.getInstance().getAbsolutePath(targetPath); + updateAbsolutPath = updateAbsolutPath.replace(sourceComponentMetadata.getHeader().getCode(), replicatedWebComponentMetadata.getHeader().getCode()); + + File file = new File(updateAbsolutPath); + String filePath = file.getParent(); + String fileName = file.getName(); + + TsFileService tsFileService = SpringBeanUtils.getBean(TsFileService.class); + String oldTsClassName = tsFileService.getTsClassNameByPath(absolutePath); + String newTsClassName = tsFileService.getTsClassNameByPath(fileName); + tsSourceFileContent = tsSourceFileContent.replace(oldTsClassName, newTsClassName); + + FileUtility.writeFile(filePath, fileName, tsSourceFileContent); + + // 更新服务构件 + WebComponentMetadata replicateComponentMetadataContent = (WebComponentMetadata) replicatedWebComponentMetadata.getContent(); + replicateComponentMetadataContent.setSource(FileUtility.getPlatformIndependentPath(FileUtility.combine(new File(targetPath).getParent(), fileName))); + // 调整 webComponent中的扩展 ts中的class名称 + replicatedWebComponentMetadata.setExtendProperty(replicatedWebComponentMetadata.getExtendProperty().replace(oldTsClassName, newTsClassName)); + replicateComponentMetadataContent.setClassName(newTsClassName); + } +} diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java index 488e04e2..4bc93f06 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.formmetadata.replication; @@ -58,10 +76,11 @@ public class FormMetadataReplicator { private ResultMessage executeReplicate(final MetadataReplicationContext context) { GspMetadata sourceFormMetadata = context.getSourceMetadata(); + MetadataDto targetMetadataDescription = context.getTargetMetadataDescription(); GspMetadata replicateFormMetadata = null; try { - // 复制表单元数据 + // 复制表单元数据 为了避免后续保存中间步骤出错,因此针对复制元数据,将里面必须的元数据置空 replicateFormMetadata = MetadataCloneManager.cloneMetadata(context); //执行复制前参数必要验证 @@ -78,13 +97,14 @@ public class FormMetadataReplicator { FileUtility.createDirectory(replicateFormMetadataAbsolutePath); } - // 磁盘中创建表单元数据 - MetadataUtility.getInstance().createMetadataIfNotExists(replicateFormMetadata); - // 更新replicateFormMetadataContent FormMetadataContent replicateFormMetadataContent = (FormMetadataContent) replicateFormMetadata.getContent(); + FormDOM replicateFormDOM = FormMetadataContentService.getInstance().getFormContent(replicateFormMetadataContent); + // 磁盘中创建表单元数据 + MetadataUtility.getInstance().createMetadataIfNotExists(replicateFormMetadata); + // 1. 拷贝VO元数据及关联元数据 FormMetadataVoManager.copyFormMetadataVo(context, sourceFormMetadata, targetMetadataDescription, replicateFormDOM, IsDebug); @@ -124,6 +144,10 @@ public class FormMetadataReplicator { GspMetadata zhResourceMetadata = MetadataUtility.getInstance().getMetadata(targetZHResourceFileName, sourceFormMetadata.getRelativePath()); + // 由于直接拷贝的资源元数据的relativepath 不正确 进行调整 + zhResourceMetadata.setRelativePath(sourceFormMetadata.getRelativePath()); + MetadataUtility.getInstance().saveMetadata(zhResourceMetadata); + // 拷贝对应的资源元数据 copyResourceMetadataWithSpecificLanguage(context, sourceFormMetadata, replicateFormMetadata, zhResourceMetadata, ResourceMetadataType.EN); copyResourceMetadataWithSpecificLanguage(context, sourceFormMetadata, replicateFormMetadata, zhResourceMetadata, ResourceMetadataType.ZH_CHT); diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java index df05482d..8e5525f3 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java @@ -1,7 +1,27 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.formmetadata.replication; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; import com.inspur.edp.lcm.metadata.api.entity.MetadataDto; +import com.inspur.edp.web.common.metadata.MetadataGetterParameter; +import com.inspur.edp.web.common.metadata.MetadataTypeEnum; import com.inspur.edp.web.common.metadata.MetadataUtility; import com.inspur.edp.web.common.utility.StringUtility; import com.inspur.edp.web.formmetadata.metadata.formdom.FormDOM; @@ -25,7 +45,9 @@ class FormMetadataSmManager { if (StringUtility.isNullOrEmpty(stateMachineId)) { continue; } - GspMetadata stateMachineMetadata = MetadataUtility.getInstance().getMetadataWithIdAndPath(stateMachineId, sourceFormMetadata.getRelativePath()); + MetadataGetterParameter metadataGetterParameter = MetadataGetterParameter.getNewInstance(stateMachineId, sourceFormMetadata.getRelativePath()); + metadataGetterParameter.setSourceMetadata(sourceFormMetadata, MetadataTypeEnum.Frm); + GspMetadata stateMachineMetadata = MetadataUtility.getInstance().getMetadataInDesign(metadataGetterParameter); MetadataDto stateMachineMetadataDto = new MetadataDto(); stateMachineMetadataDto.setCode(stateMachineMetadata.getHeader().getCode().replace(sourceFormMetadata.getHeader().getCode(), targetMetadataDescription.getCode())); stateMachineMetadataDto.setName(stateMachineMetadata.getHeader().getName().replace(sourceFormMetadata.getHeader().getName(), targetMetadataDescription.getName())); diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java index 5fac3056..e451553a 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.formmetadata.replication; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; @@ -5,6 +23,8 @@ import com.inspur.edp.lcm.metadata.api.entity.MetadataDto; import com.inspur.edp.sgf.api.common.ResourceType; import com.inspur.edp.sgf.api.entity.SgMetadata; import com.inspur.edp.sgf.api.service.EapiMetadataDtService; +import com.inspur.edp.web.common.metadata.MetadataGetterParameter; +import com.inspur.edp.web.common.metadata.MetadataTypeEnum; import com.inspur.edp.web.common.metadata.MetadataUtility; import com.inspur.edp.web.common.utility.StringUtility; import com.inspur.edp.web.formmetadata.metadata.formdom.FormDOM; @@ -31,7 +51,10 @@ class FormMetadataVoManager { // 如果不存在对应的voId 那么无法进行vo拷贝 continue; } - GspMetadata viewObjectMetadata = MetadataUtility.getInstance().getMetadataWithIdAndPath(viewObjectId, sourceFormMetadata.getRelativePath()); + MetadataGetterParameter metadataGetterParameter = MetadataGetterParameter.getNewInstance(viewObjectId, sourceFormMetadata.getRelativePath()); + metadataGetterParameter.setSourceMetadata(sourceFormMetadata, MetadataTypeEnum.Frm); + + GspMetadata viewObjectMetadata = MetadataUtility.getInstance().getMetadataInDesign(metadataGetterParameter); if (viewObjectMetadata == null) { throw new RuntimeException("根据VoId获取对应元数据为空,对应voId为:" + viewObjectId); } diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetadataRTService.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetadataRTService.java index 563fdf62..b5e7c932 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetadataRTService.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetadataRTService.java @@ -1,6 +1,26 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.formmetadata.service; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; +import com.inspur.edp.web.common.metadata.MetadataGetterParameter; +import com.inspur.edp.web.common.metadata.MetadataTypeEnum; import com.inspur.edp.web.common.metadata.MetadataUtility; import com.inspur.edp.web.formmetadata.entity.FormRelateViewModelEntity; import com.inspur.edp.web.formmetadata.metadata.FormMetadataContentService; @@ -37,7 +57,9 @@ public class FormMetadataRTService { formMetadataList.forEach(formMetadata -> { // 如果对应的表单元数据内容为空 那么根据id重新获取对应元数据 if (formMetadata.getContent() == null) { - formMetadata = MetadataUtility.getInstance().getMetadataWithIdAndPath(formMetadata.getHeader().getId(), formMetadata.getRelativePath()); + MetadataGetterParameter metadataGetterParameter = MetadataGetterParameter.getNewInstance(formMetadata.getHeader().getId(), formMetadata.getRelativePath()); + metadataGetterParameter.setSourceMetadata(viewModelMetadata, MetadataTypeEnum.ViewModel); + formMetadata = MetadataUtility.getInstance().getMetadataInDesign(metadataGetterParameter); } FormMetadataContentService.ParameterFromMetadataResult formParameter = FormMetadataContentService.getInstance().getParameterFromFormMetadata(formMetadata); // 为了应对一个viewModel可能对应多个表单的情况 diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetataService.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetataService.java index 278ddfd8..3e137698 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetataService.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetataService.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.formmetadata.service; import com.inspur.edp.i18n.resource.api.II18nResourceDTManager; @@ -14,6 +32,7 @@ import com.inspur.edp.web.common.entity.ResultCode; import com.inspur.edp.web.common.entity.ResultMessage; import com.inspur.edp.web.common.io.FileUtility; import com.inspur.edp.web.common.logger.WebLogger; +import com.inspur.edp.web.common.metadata.MetadataGetterParameter; import com.inspur.edp.web.common.metadata.MetadataUtility; import com.inspur.edp.web.common.serialize.SerializeUtility; import com.inspur.edp.web.common.utility.StringUtility; @@ -279,7 +298,10 @@ public class FormMetataService { if (!MetadataUtility.getInstance().isMetaDataExistsWithMetadataIDAndPath(sourceMetadataRelativePath, sourceMetadataId)) { return ResultCode.info("待复制的表单元数据不存在,请确认该元数据是否已被删除。"); } - GspMetadata sourceFormMetadata = MetadataUtility.getInstance().getMetadataWithIdAndPath(sourceMetadataId, sourceMetadataRelativePath); + MetadataGetterParameter metadataGetterParameter = MetadataGetterParameter.getNewInstance(sourceMetadataId, sourceMetadataRelativePath); + metadataGetterParameter.setTargetMetadataNotFoundMessage("表单复制失败,待复制的表单元数据不存在,请确认该元数据是否已被删除。"); + + GspMetadata sourceFormMetadata = MetadataUtility.getInstance().getMetadataInDesign(metadataGetterParameter); if (sourceFormMetadata == null) { throw new GSPException("Web_Replicate", "表单复制,获取元数据为空。待获取元数据ID是:" + sourceMetadataId); } diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/stepexecute/MetadataChangeStepExecuteImpl.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/stepexecute/MetadataChangeStepExecuteImpl.java index 4193e09d..d4f822f2 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/stepexecute/MetadataChangeStepExecuteImpl.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/stepexecute/MetadataChangeStepExecuteImpl.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.frontendproject.changedetect.generate.stepexecute; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; @@ -6,6 +24,8 @@ import com.inspur.edp.lcm.metadata.api.entity.uri.MetadataURI; import com.inspur.edp.lcm.metadata.api.service.MetadataProjectService; import com.inspur.edp.web.common.entity.TerminalType; import com.inspur.edp.web.common.io.FileUtility; +import com.inspur.edp.web.common.metadata.MetadataGetterParameter; +import com.inspur.edp.web.common.metadata.MetadataTypeEnum; import com.inspur.edp.web.common.metadata.MetadataUtility; import com.inspur.edp.web.common.utility.ListUtility; import com.inspur.edp.web.common.utility.StringUtility; @@ -140,7 +160,9 @@ public class MetadataChangeStepExecuteImpl extends AbstractGenerateChangeDetectS ChangeDetectStepExecuteResult executeResult = ChangeDetectStepExecuteResult.getPassResult(ChangeDetectExecuteType.Generate); if (t.getContent() == null) { // 表示通过列表形式获取到的元数据content为空 那么单独进行元数据的读取 - t.setContent(MetadataUtility.getInstance().getMetadataWithIdAndPath(t.getHeader().getId(), t.getRelativePath()).getContent()); + MetadataGetterParameter metadataGetterParameter=MetadataGetterParameter.getNewInstance(t.getHeader().getId(), t.getRelativePath()); + metadataGetterParameter.setSourceMetadata(t, MetadataTypeEnum.Frm); + t.setContent(MetadataUtility.getInstance().getMetadataInDesign(metadataGetterParameter).getContent()); } FormMetadataContent formMetadataContent = (FormMetadataContent) t.getContent(); FormDOM formContent = FormMetadataContentService.getInstance().getFormContent(formMetadataContent); diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/FormMetadataDebugUriWithMobile.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/FormMetadataDebugUriWithMobile.java index bd7bfa7e..a4ee62eb 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/FormMetadataDebugUriWithMobile.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/FormMetadataDebugUriWithMobile.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.frontendproject.debuguri; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; @@ -7,6 +25,7 @@ import com.inspur.edp.lcm.metadata.api.service.MetadataProjectService; import com.inspur.edp.web.common.GspProjectUtil; import com.inspur.edp.web.common.entity.TerminalType; import com.inspur.edp.web.common.environment.ExecuteEnvironment; +import com.inspur.edp.web.common.metadata.MetadataGetterParameter; import com.inspur.edp.web.common.metadata.MetadataUtility; import com.inspur.edp.web.common.serialize.SerializeUtility; import com.inspur.edp.web.common.utility.StringUtility; @@ -39,6 +58,9 @@ public class FormMetadataDebugUriWithMobile extends AbstractFormMetadataDebugUri String defaultPageUri = ""; // 进行元数据的调用借口获取方式调整 + MetadataGetterParameter metadataGetterParameter=MetadataGetterParameter.getNewInstance(formMetadataId,null); + metadataGetterParameter.setTargetMetadataNotFoundMessage("表单调试,获取表单元数据为空,对应元数据id:"+formMetadataId); + GspMetadata metadata = MetadataUtility.getInstance().getMetadataWithEnvironment(formMetadataId, ExecuteEnvironment.Design, false); FormMetadataContent formMetadataContent = (FormMetadataContent) metadata.getContent(); FormDOM formDom = FormMetadataContentService.getInstance().getFormContent(formMetadataContent); diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/pageflow/PageFlowMetadataManager.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/pageflow/PageFlowMetadataManager.java index 25feebbb..d3744263 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/pageflow/PageFlowMetadataManager.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/pageflow/PageFlowMetadataManager.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.frontendproject.pageflow; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; @@ -11,6 +29,8 @@ import com.inspur.edp.web.common.JITEngineConstants; import com.inspur.edp.web.common.entity.TerminalType; import com.inspur.edp.web.common.io.FileUtility; import com.inspur.edp.web.common.logger.WebLogger; +import com.inspur.edp.web.common.metadata.MetadataGetterParameter; +import com.inspur.edp.web.common.metadata.MetadataUtility; import com.inspur.edp.web.common.utility.StringUtility; import com.inspur.edp.web.frontendproject.entity.ChosenFormList; import com.inspur.edp.web.jitengine.JITEngineManager; @@ -167,7 +187,10 @@ public class PageFlowMetadataManager { } // 判断元数据是否存在 try { - GspMetadata pageFlowMetadata = metadataService.getRefMetadata(projectPath, pageFlowMetadataID); + MetadataGetterParameter metadataGetterParameter = MetadataGetterParameter.getNewInstance(pageFlowMetadataID, projectPath); + metadataGetterParameter.setTargetMetadataNotFoundMessage("找不到页面流元数据,请检查对应app.config.json文件中配置页面流元数据id是否正确或页面流元数据是否被移除。"); + + GspMetadata pageFlowMetadata = MetadataUtility.getInstance().getMetadataInDesign(metadataGetterParameter); return pageFlowMetadata; } catch (MetadataNotFoundException ex) { // 如果捕获到元数据找不到异常 那么重新进行元数据的创建 diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodeMobileOperation.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodeMobileOperation.java index 052446cd..6613e46c 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodeMobileOperation.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodeMobileOperation.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation.sourcegenerate; import com.inspur.edp.web.common.entity.TerminalType; @@ -23,6 +41,8 @@ public class SourceCodeMobileOperation extends AbstractSourceCodeOperation imple "mobile", "vue", webDevPath, sourceAppPath, null, zeroCodeParameter.getServiceUnitPath(), ExecuteEnvironment.Runtime); + + projectCompileContext.setDeleteSourceCodeBeforeGenerate(true); JITEngineManager.compileProject(projectCompileContext); } } diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodePCOperation.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodePCOperation.java index 2313c9bb..c45a7d30 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodePCOperation.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodePCOperation.java @@ -1,3 +1,21 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation.sourcegenerate; import com.inspur.edp.web.common.entity.TerminalType; @@ -39,6 +57,8 @@ public class SourceCodePCOperation extends AbstractSourceCodeOperation implement projectCompileContext.setGenerateViewModel(true); // 是否使用解析模式 projectCompileContext.setJieXiForm(zeroCodeParameter.isUseJieXiMode()); + // 零代码不再保留源代码 每次生成前都进行删除 + projectCompileContext.setDeleteSourceCodeBeforeGenerate(true); return projectCompileContext; } } diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/service/RouteMetataService.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/service/RouteMetataService.java index 06607de5..813b1925 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/service/RouteMetataService.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/service/RouteMetataService.java @@ -1,9 +1,28 @@ +/* + * + * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * * + * * Licensed 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 com.inspur.edp.web.pageflow.metadata.service; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; import com.inspur.edp.lcm.metadata.api.service.MetadataService; import com.inspur.edp.web.common.GSPException; import com.inspur.edp.web.common.io.FileUtility; +import com.inspur.edp.web.common.metadata.MetadataGetterParameter; import com.inspur.edp.web.common.metadata.MetadataUtility; import com.inspur.edp.web.common.utility.StringUtility; import com.inspur.edp.web.pageflow.metadata.entity.PageFlowMetadataEntity; @@ -34,7 +53,9 @@ public class RouteMetataService { return null; } - GspMetadata routeMetadata = MetadataUtility.getInstance().getMetadataWithIdAndPath(routeMetadataId, projectPath); + MetadataGetterParameter metadataGetterParameter = MetadataGetterParameter.getNewInstance(routeMetadataId, projectPath); + metadataGetterParameter.setTargetMetadataNotFoundMessage("获取页面流元数据为空,请检查页面流元数据是否被删除或app.config.json中页面流定义是否正确"); + GspMetadata routeMetadata = MetadataUtility.getInstance().getMetadataInDesign(metadataGetterParameter); if (routeMetadata == null) { return null; } @@ -53,8 +74,10 @@ public class RouteMetataService { if (StringUtility.isNullOrEmpty(routeMetadataId) || StringUtility.isNullOrEmpty(projectPath)) { return; } + MetadataGetterParameter metadataGetterParameter = MetadataGetterParameter.getNewInstance(routeMetadataId, projectPath); + metadataGetterParameter.setTargetMetadataNotFoundMessage("获取页面流元数据为空,请检查页面流元数据是否存在或app.config.json中页面流定义是否正确"); - GspMetadata routeMetadata = MetadataUtility.getInstance().getMetadataWithIdAndPath(routeMetadataId, projectPath); + GspMetadata routeMetadata = MetadataUtility.getInstance().getMetadataInDesign(metadataGetterParameter); if (routeMetadata == null) { log.debug("Save Route Metadata Content Operation is Stopped Because Target Route Metadata is NULL."); return; -- Gitee From 36c478b865450ad2ecb974c189f1b2a7800aae0d Mon Sep 17 00:00:00 2001 From: guozhiqi Date: Wed, 15 Feb 2023 17:24:01 +0800 Subject: [PATCH 10/10] =?UTF-8?q?=E5=A2=9E=E5=8A=A0copyright?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .mvn/settings.xml | 16 ++++++++++ .mvn/wrapper/maven-wrapper.properties | 16 ++++++++++ jitengine-web-api/pom.xml | 16 ++++++++++ .../web/api/service/JitEngineService.java | 16 ++++++++++ .../service/MobileApproveReviewParameter.java | 16 ++++++++++ .../service/MobileApproveReviewResponse.java | 16 ++++++++++ .../api/webservice/JitEngineWebService.java | 16 ++++++++++ jitengine-web-core/pom.xml | 16 ++++++++++ .../config/JitEngineWebConfiguration.java | 16 ++++++++++ .../core/service/JitEngineServiceImpl.java | 16 ++++++++++ .../service/MobilEApprovePreviewImpl.java | 16 ++++++++++ .../web/core/service/MobileApproveDocker.java | 16 ++++++++++ .../webservice/JitEngineWebSericeImpl.java | 16 ++++++++++ mvnw | 29 +++++++++---------- pom.xml | 16 ++++++++++ runtime-api/pom.xml | 16 ++++++++++ .../api/entity/DeployTargetEnum.java | 16 ++++++++++ .../api/entity/JitBuildParameter.java | 16 ++++++++++ .../api/entity/JitBuildRefMetadata.java | 16 ++++++++++ .../api/entity/JitBuildResponse.java | 16 ++++++++++ .../api/entity/JitMetadataTypeEnum.java | 16 ++++++++++ .../api/entity/JitRuntimeConstant.java | 16 ++++++++++ .../api/service/JitBuildService.java | 16 ++++++++++ runtime-core/pom.xml | 16 ++++++++++ .../core/builddeploy/BuildDeployManager.java | 16 ++++++++++ .../JitBuildParameterGenerator.java | 16 ++++++++++ .../JitBuildParameterValidator.java | 16 ++++++++++ .../core/config/JitBuildConfiguration.java | 16 ++++++++++ .../constant/FormJsonFileSuffixConstant.java | 16 ++++++++++ .../AbstractFormJsonFileGenerator.java | 16 ++++++++++ .../CommandJsonFileGenerator.java | 16 ++++++++++ .../EapiJsonFileGenerator.java | 16 ++++++++++ .../FormJsonFileManager.java | 16 ++++++++++ .../FormModuleWithBuildParameter.java | 16 ++++++++++ .../FormModuleWithBuildParameterManager.java | 16 ++++++++++ .../FormRouteJsonFileGenerator.java | 16 ++++++++++ .../FormRuntimeMetadataEntity.java | 16 ++++++++++ .../FrmJsonFileGenerator.java | 16 ++++++++++ .../JsonFileGeneratorFactory.java | 16 ++++++++++ .../JsonFileGeneratorInterface.java | 16 ++++++++++ .../ResourceJsonFileGenerator.java | 16 ++++++++++ .../StateMachineJsonFileGenerator.java | 16 ++++++++++ .../formroute/FormRouteEntity.java | 16 ++++++++++ .../formroute/FormRoutePageEntity.java | 16 ++++++++++ .../formroute/FormRouteProjectEntity.java | 16 ++++++++++ .../core/i18n/GeneratedI18nResourceList.java | 16 ++++++++++ .../core/i18n/GeneratedI8nResource.java | 16 ++++++++++ .../core/service/JitBuildServiceImp.java | 16 ++++++++++ .../SourceCodeMetadataManager.java | 16 ++++++++++ .../core/utility/JitBuildUtility.java | 16 ++++++++++ runtime-scriptcache-api/pom.xml | 16 ++++++++++ .../api/entity/FormProjectCache.java | 16 ++++++++++ .../api/entity/FormScriptCache.java | 16 ++++++++++ .../api/entity/FormScriptCacheContent.java | 16 ++++++++++ .../api/entity/PublishScriptRequest.java | 16 ++++++++++ .../ScriptCacheCheckVersionRequest.java | 16 ++++++++++ .../api/entity/ScriptCacheResponse.java | 16 ++++++++++ .../api/service/ScriptCacheService.java | 16 ++++++++++ .../api/webservice/ScriptCacheWebService.java | 16 ++++++++++ .../src/main/resources/log4j2.properties | 16 ++++++++++ runtime-scriptcache/pom.xml | 16 ++++++++++ .../config/ScriptCacheConfiguration.java | 16 ++++++++++ .../constants/ScriptCacheDBTableConstant.java | 16 ++++++++++ .../domain/entity/FormProjectCacheEntity.java | 16 ++++++++++ .../entity/FormScriptCacheContentEntity.java | 16 ++++++++++ .../domain/entity/FormScriptCacheEntity.java | 16 ++++++++++ .../manager/FormProjectCacheManager.java | 16 ++++++++++ .../FormScriptCacheContentManager.java | 16 ++++++++++ .../manager/FormScriptCacheManager.java | 16 ++++++++++ .../FormProjectCacheRepository.java | 16 ++++++++++ .../FormScriptCacheContentRepository.java | 16 ++++++++++ .../repository/FormScriptCacheRepository.java | 16 ++++++++++ .../localserver/LocalServerFileOperation.java | 16 ++++++++++ .../localserver/LocalServerPathGenerator.java | 16 ++++++++++ .../LocalServerProjectVersion.java | 16 ++++++++++ .../localserver/LocalServerScriptVersion.java | 16 ++++++++++ .../LocalServerVersionFileContent.java | 16 ++++++++++ .../LocalServerVersionFileOperation.java | 16 ++++++++++ .../LocalServerVersionManager.java | 16 ++++++++++ .../rpc/LocalServerVersionRpcService.java | 16 ++++++++++ .../rpc/LocalServerVersionRpcServiceImpl.java | 16 ++++++++++ ...tomizationCacheServiceInstanceManager.java | 16 ++++++++++ .../manager/ScriptCacheVersionManager.java | 16 ++++++++++ .../service/ScriptCacheServiceImpl.java | 16 ++++++++++ .../utility/ScriptCacheContentEncrypt.java | 16 ++++++++++ .../webservice/ScriptCacheWebServiceImpl.java | 16 ++++++++++ .../src/main/resources/log4j2.properties | 16 ++++++++++ toout.bat | 16 ++++++++++ web-appconfig-api/pom.xml | 16 ++++++++++ .../appconfig/api/entity/GspAppConfig.java | 16 ++++++++++ .../api/webservice/AppConfigWebService.java | 16 ++++++++++ web-appconfig-core/pom.xml | 16 ++++++++++ .../core/appconfig/AppConfigFileManager.java | 16 ++++++++++ .../appconfig/AppConfigFilePathGenerator.java | 16 ++++++++++ .../core/config/AppConfigConfiguration.java | 16 ++++++++++ .../core/constants/GspAppConfigConstants.java | 16 ++++++++++ .../core/service/GspAppConfigService.java | 16 ++++++++++ .../webservice/AppConfigWebServiceImpl.java | 16 ++++++++++ web-approval-format-api/pom.xml | 16 ++++++++++ .../entity/ApprovalFormUpdateRequestBody.java | 16 ++++++++++ .../api/entity/ApprovalFormat.java | 16 ++++++++++ .../ApprovalFormatCreateRequestBody.java | 16 ++++++++++ .../ApprovalFormatCreateResponseBody.java | 16 ++++++++++ ...rovalFormatDimensionUpdateRequestBody.java | 16 ++++++++++ .../api/entity/ApprovalFormatEnum.java | 16 ++++++++++ .../ApprovalFormatForestByDimension.java | 16 ++++++++++ .../ApprovalFormatQueryResponseBody.java | 16 ++++++++++ .../api/entity/ApprovalFormatTreeNode.java | 16 ++++++++++ .../ApprovalFormatUpdateRequestBody.java | 16 ++++++++++ .../ApprovalViewObjectUpdateRequestBody.java | 16 ++++++++++ .../entity/ApproveFormatPreviewParameter.java | 16 ++++++++++ .../api/entity/HelpMetadataSimpleContent.java | 16 ++++++++++ .../api/entity/HelpProviderResult.java | 16 ++++++++++ .../api/entity/schema/ComplexField.java | 16 ++++++++++ .../api/entity/schema/Entity.java | 16 ++++++++++ .../api/entity/schema/Field.java | 16 ++++++++++ .../api/entity/schema/FormSchema.java | 16 ++++++++++ .../api/entity/schema/SimpleField.java | 16 ++++++++++ .../api/entity/schema/editor/CheckBox.java | 16 ++++++++++ .../api/entity/schema/editor/DateBox.java | 16 ++++++++++ .../api/entity/schema/editor/EnumField.java | 16 ++++++++++ .../api/entity/schema/editor/FieldEditor.java | 16 ++++++++++ .../entity/schema/editor/LanguageTextBox.java | 16 ++++++++++ .../entity/schema/editor/MultiTextBox.java | 16 ++++++++++ .../api/entity/schema/editor/NumericBox.java | 16 ++++++++++ .../api/entity/schema/editor/TextBox.java | 16 ++++++++++ .../api/entity/schema/type/BooleanType.java | 16 ++++++++++ .../api/entity/schema/type/DateType.java | 16 ++++++++++ .../entity/schema/type/DynamicObjectType.java | 16 ++++++++++ .../api/entity/schema/type/EntityType.java | 16 ++++++++++ .../api/entity/schema/type/EnumItem.java | 16 ++++++++++ .../api/entity/schema/type/EnumType.java | 16 ++++++++++ .../api/entity/schema/type/FieldType.java | 16 ++++++++++ .../api/entity/schema/type/HierarchyType.java | 16 ++++++++++ .../api/entity/schema/type/NumericType.java | 16 ++++++++++ .../api/entity/schema/type/ObjectType.java | 16 ++++++++++ .../api/entity/schema/type/StringType.java | 16 ++++++++++ .../api/entity/schema/type/TextType.java | 16 ++++++++++ .../rpcservice/IApprovalFormatRpcService.java | 16 ++++++++++ .../service/ApprovalFormMetadataService.java | 16 ++++++++++ .../api/service/ApprovalFormatService.java | 16 ++++++++++ .../api/service/BusinessEntityService.java | 16 ++++++++++ .../api/service/DimensionService.java | 16 ++++++++++ .../api/service/IRuntimeMetadataService.java | 16 ++++++++++ .../ApprovalFormMetadataWebService.java | 16 ++++++++++ .../webservice/ApprovalFormatWebService.java | 16 ++++++++++ .../webservice/BusinessEntityWebService.java | 16 ++++++++++ .../api/webservice/DimensionWebService.java | 16 ++++++++++ web-approval-format-core/pom.xml | 16 ++++++++++ .../config/ApprovalFormatConfiguration.java | 16 ++++++++++ .../converter/ApprovalFormatConverter.java | 16 ++++++++++ .../core/domain/entity/ApprovalFormatDO.java | 16 ++++++++++ .../domain/manager/ApprovalFormatManager.java | 16 ++++++++++ .../repository/ApprovalFormatRepository.java | 16 ++++++++++ .../ApprovalFormatRpcServiceImpl.java | 16 ++++++++++ .../ApprovalFormMetadataServiceImpl.java | 16 ++++++++++ .../service/ApprovalFormatServiceImpl.java | 16 ++++++++++ .../service/BusinessEntityServiceImpl.java | 16 ++++++++++ .../core/service/DimensionServiceImpl.java | 16 ++++++++++ .../service/RuntimeMetadataServiceImpl.java | 16 ++++++++++ .../core/util/ApprovalFormSchemaUtil.java | 16 ++++++++++ .../core/util/ApprovalFormUtil.java | 16 ++++++++++ .../core/util/ApprovalFormatPermission.java | 16 ++++++++++ .../core/util/ApprovalFormatTreeUtil.java | 16 ++++++++++ .../core/util/ApprovalFormatUtil.java | 16 ++++++++++ .../core/util/ApproveFormatPreviewUtil.java | 16 ++++++++++ .../approvalformat/core/util/FieldUtil.java | 16 ++++++++++ .../core/util/HelpProviderUtil.java | 16 ++++++++++ .../core/util/TypeBuildingContext.java | 16 ++++++++++ .../ApprovalFormMetadataWebServiceImpl.java | 16 ++++++++++ .../ApprovalFormatWebServiceImpl.java | 16 ++++++++++ .../BusinessEntityWebServiceImpl.java | 16 ++++++++++ .../webservice/DimensionWebServiceImpl.java | 16 ++++++++++ web-approval-format-rpc/pom.xml | 16 ++++++++++ web-common/pom.xml | 16 ++++++++++ .../inspur/edp/web/common/GSPException.java | 16 ++++++++++ .../inspur/edp/web/common/GspProjectUtil.java | 16 ++++++++++ .../edp/web/common/JITEngineConstants.java | 16 ++++++++++ .../constant/FrontendProjectConstant.java | 16 ++++++++++ .../common/converter/WebEntityConverter.java | 16 ++++++++++ .../web/common/core/EnumValueParsable.java | 16 ++++++++++ .../web/common/encrypt/EncryptConstant.java | 16 ++++++++++ .../web/common/encrypt/EncryptUtility.java | 16 ++++++++++ .../web/common/entity/NodeJsCommandEnum.java | 16 ++++++++++ .../edp/web/common/entity/ResultCode.java | 16 ++++++++++ .../edp/web/common/entity/ResultMessage.java | 16 ++++++++++ .../web/common/entity/ResultMessageData.java | 16 ++++++++++ .../edp/web/common/entity/TerminalType.java | 16 ++++++++++ .../environment/EnvironmentException.java | 16 ++++++++++ .../environment/ExecuteEnvironment.java | 16 ++++++++++ .../ExecuteEnvironmentCheckResult.java | 16 ++++++++++ .../checker/ExecuteEnvironmentChecker.java | 16 ++++++++++ .../inspur/edp/web/common/io/FileUtility.java | 16 ++++++++++ .../web/common/io/NodeJsCommandResult.java | 16 ++++++++++ .../web/common/io/NodejsFunctionUtility.java | 16 ++++++++++ .../edp/web/common/logger/WebLogger.java | 16 ++++++++++ .../metadata/MetadataGetterParameter.java | 24 +++++++-------- .../web/common/metadata/MetadataTypeEnum.java | 24 +++++++-------- .../web/common/metadata/MetadataUtility.java | 24 +++++++-------- .../web/common/metadata/WebMetadataUri.java | 24 +++++++-------- .../serialize/MyPropertyNamingStrategy.java | 16 ++++++++++ .../common/serialize/SerializeUtility.java | 16 ++++++++++ .../edp/web/common/utility/Base64Utility.java | 16 ++++++++++ .../utility/CommandExecuteInterceptor.java | 16 ++++++++++ .../common/utility/CommandExecuteResult.java | 16 ++++++++++ .../common/utility/CommandLineUtility.java | 16 ++++++++++ .../edp/web/common/utility/CommonUtility.java | 16 ++++++++++ .../edp/web/common/utility/EqualsUtility.java | 16 ++++++++++ .../edp/web/common/utility/ListUtility.java | 16 ++++++++++ .../web/common/utility/LoggerLevelEnum.java | 16 ++++++++++ .../edp/web/common/utility/LoggerUtility.java | 16 ++++++++++ .../utility/OperatingSystemUtility.java | 16 ++++++++++ .../edp/web/common/utility/RandomUtility.java | 16 ++++++++++ .../edp/web/common/utility/StringUtility.java | 16 ++++++++++ .../WebThreadUncaughtExceptionHandler.java | 16 ++++++++++ web-designschema-api/pom.xml | 16 ++++++++++ .../api/entity/DesignSchemaCreateEntity.java | 16 ++++++++++ .../webservice/DesignSchemaWebService.java | 16 ++++++++++ web-designschema/pom.xml | 16 ++++++++++ .../config/DesignSchemaConfiguration.java | 16 ++++++++++ .../designschema/elements/ComplexField.java | 16 ++++++++++ .../designschema/elements/DynamicField.java | 16 ++++++++++ .../edp/web/designschema/elements/Entity.java | 16 ++++++++++ .../edp/web/designschema/elements/Field.java | 16 ++++++++++ .../edp/web/designschema/elements/Schema.java | 16 ++++++++++ .../designschema/elements/SimpleField.java | 16 ++++++++++ .../web/designschema/elements/Variable.java | 16 ++++++++++ .../elements/editor/CheckBox.java | 16 ++++++++++ .../elements/editor/DataSource.java | 16 ++++++++++ .../designschema/elements/editor/DateBox.java | 16 ++++++++++ .../elements/editor/DefaultEditor.java | 16 ++++++++++ .../elements/editor/EnumField.java | 16 ++++++++++ .../elements/editor/FieldEditor.java | 16 ++++++++++ .../elements/editor/LanguageTextBox.java | 16 ++++++++++ .../elements/editor/LookupEdit.java | 16 ++++++++++ .../elements/editor/MultiTextBox.java | 16 ++++++++++ .../elements/editor/NumericBox.java | 16 ++++++++++ .../elements/editor/RadioGroup.java | 16 ++++++++++ .../elements/editor/SwitchField.java | 16 ++++++++++ .../designschema/elements/editor/TextBox.java | 16 ++++++++++ .../elements/type/BigNumericType.java | 16 ++++++++++ .../elements/type/BooleanType.java | 16 ++++++++++ .../elements/type/DateTimeType.java | 16 ++++++++++ .../designschema/elements/type/DateType.java | 16 ++++++++++ .../elements/type/DynamicObjectType.java | 16 ++++++++++ .../elements/type/EntityType.java | 16 ++++++++++ .../designschema/elements/type/EnumItem.java | 16 ++++++++++ .../designschema/elements/type/EnumType.java | 16 ++++++++++ .../designschema/elements/type/FieldType.java | 16 ++++++++++ .../elements/type/HierarchyType.java | 16 ++++++++++ .../elements/type/NumericType.java | 16 ++++++++++ .../elements/type/ObjectType.java | 16 ++++++++++ .../elements/type/StringType.java | 16 ++++++++++ .../designschema/elements/type/TextType.java | 16 ++++++++++ .../designschema/generator/EntityBuilder.java | 16 ++++++++++ .../designschema/generator/FieldBuilder.java | 24 +++++++-------- .../generator/FieldTypeBuilder.java | 24 +++++++-------- .../designschema/generator/SchemaBuilder.java | 24 +++++++-------- .../generator/TypeBuildingContext.java | 16 ++++++++++ .../generator/UdtExtBuildingContext.java | 16 ++++++++++ .../generator/UdtFieldTreeNode.java | 16 ++++++++++ .../generator/VariableBuilder.java | 16 ++++++++++ .../generator/VariableTypeBuilder.java | 16 ++++++++++ .../BaseDesignSchemaChangeHandler.java | 16 ++++++++++ .../DesignSchemaChangeListener.java | 16 ++++++++++ .../synchronization/FormMetadataUpdate.java | 24 +++++++-------- .../synchronization/LookupConfig.java | 16 ++++++++++ .../NocodeDesignSchemaChangeListener.java | 16 ++++++++++ .../synchronization/Synchronizer.java | 16 ++++++++++ .../udtextensiondef/FormUdtExtension.java | 16 ++++++++++ .../FormUdtExtensionDeserializer.java | 16 ++++++++++ .../FormUdtExtensionSerializer.java | 16 ++++++++++ .../web/designschema/utils/StringUtils.java | 16 ++++++++++ .../DesignSchemaWebServiceImpl.java | 16 ++++++++++ web-form-jitengine/pom.xml | 16 ++++++++++ .../edp/web/jitengine/JITEngineManager.java | 16 ++++++++++ .../jitengine/NpmInstallBeforeGenerate.java | 16 ++++++++++ .../web/jitengine/ProjectCompileContext.java | 16 ++++++++++ .../babelgrnerate/GenerateForBabel.java | 16 ++++++++++ .../web/jitengine/constant/JitConstant.java | 16 ++++++++++ .../DynamicFormMetaFileNameGenerator.java | 16 ++++++++++ .../DynamicFormModuleOperation.java | 16 ++++++++++ .../expressions/DesignExpressionValue.java | 16 ++++++++++ .../ExpressionFormFieldExpression.java | 16 ++++++++++ .../ExpressionFormFieldJsonEntity.java | 16 ++++++++++ .../expressions/ExpressionFormGenerator.java | 16 ++++++++++ .../expressions/ExpressionFormJsonEntity.java | 16 ++++++++++ .../expressions/ExpressionManifest.java | 16 ++++++++++ .../ExpressionManifestJsonEntity.java | 16 ++++++++++ .../ExpressionManifestJsonItemEntity.java | 16 ++++++++++ .../ExpressionManifestManager.java | 16 ++++++++++ .../web/jitengine/expressions/FieldInfo.java | 16 ++++++++++ .../ModuleExpressionStatement.java | 16 ++++++++++ .../ModuleFormExpressionFieldItem.java | 16 ++++++++++ .../expressions/ModuleFormExpressionItem.java | 16 ++++++++++ .../expressions/ModuleFormExpressions.java | 16 ++++++++++ .../expressions/ModuleSchemaEntities.java | 16 ++++++++++ .../expressions/ModuleSchemaEntityType.java | 16 ++++++++++ .../DefaultFunctionExpressionParser.java | 16 ++++++++++ .../parser/EntityExpressionParser.java | 16 ++++++++++ .../parser/ExpressionParserManager.java | 16 ++++++++++ .../parser/FieldsExpressionParser.java | 16 ++++++++++ .../utility/ExpressionUtility.java | 16 ++++++++++ .../utility/FieldByIDAndVMIDResult.java | 16 ++++++++++ .../expressions/utility/TableFieldsInfo.java | 16 ++++++++++ .../i18nresource/GenerateResourceManager.java | 16 ++++++++++ .../GeneratedI18nResourceList.java | 16 ++++++++++ .../i18nresource/GeneratedI8nResource.java | 16 ++++++++++ .../CommandServiceAnalysis.java | 16 ++++++++++ .../metadataanalysis/CommandsAnalysis.java | 16 ++++++++++ .../metadataanalysis/EapiAnalysis.java | 16 ++++++++++ .../metadataanalysis/FormAnalysis.java | 16 ++++++++++ .../StateMachineAnalysis.java | 16 ++++++++++ .../TsBuildConfigJsonGenerator.java | 16 ++++++++++ .../form/FormComponentParser.java | 16 ++++++++++ .../metadatamanager/BaseMetaDataManager.java | 16 ++++++++++ .../CommandExtendProperty.java | 16 ++++++++++ .../CommandServiceManager.java | 16 ++++++++++ .../CommandsMetadataManager.java | 16 ++++++++++ .../ComponentMetadataManager.java | 16 ++++++++++ .../metadatamanager/EapiMetadataManager.java | 16 ++++++++++ .../metadatamanager/FormMetadataManager.java | 16 ++++++++++ .../StateMachineMetadataManager.java | 16 ++++++++++ .../app/AppMetadataManager.java | 16 ++++++++++ .../metadatamodel/app/AppConfig.java | 16 ++++++++++ .../form/AnalysisExternalComponentResult.java | 16 ++++++++++ .../CommandServiceAnalysis.java | 16 ++++++++++ .../sourcecode/SourceCodeInFormManager.java | 16 ++++++++++ .../sourcecode/SourceCodeInFormRef.java | 16 ++++++++++ .../web/jitengine/utility/PathUtility.java | 16 ++++++++++ web-form-metadata-api/pom.xml | 16 ++++++++++ .../api/FormMetadataCommonService.java | 16 ++++++++++ .../api/FormMetadataWebService.java | 16 ++++++++++ .../api/entity/FormSuInfoEntity.java | 16 ++++++++++ .../api/entity/ReplicateFormRequestBody.java | 16 ++++++++++ .../api/entity/SuInfoWithBizobjIdEntity.java | 16 ++++++++++ web-form-metadata/pom.xml | 16 ++++++++++ .../config/FormMetadataConfiguration.java | 16 ++++++++++ .../constant/ReplicationConstant.java | 16 ++++++++++ .../entity/FormRelateViewModelEntity.java | 16 ++++++++++ .../entity/ResourceMetadataType.java | 16 ++++++++++ .../event/FormMetadataSaveEventListener.java | 24 +++++++-------- .../event/WebCommandMetadataDelete.java | 24 +++++++-------- .../i18n/FormMetadataI18nService.java | 16 ++++++++++ .../i18n/I18nResourceItemManager.java | 16 ++++++++++ .../web/formmetadata/i18n/II18nResource.java | 16 ++++++++++ .../i18n/component/BaseComponent.java | 16 ++++++++++ .../i18n/component/ComponentContext.java | 16 ++++++++++ .../i18n/component/ComponentUtility.java | 16 ++++++++++ .../I18nResourceStrategyContext.java | 16 ++++++++++ .../I18nResourceStrategyFactory.java | 16 ++++++++++ .../i18n/component/I18nResourceUtility.java | 16 ++++++++++ .../i18n/component/IComponent.java | 16 ++++++++++ .../i18n/component/II18nResourceStrategy.java | 16 ++++++++++ .../AbstractI18nResourceStrategy.java | 16 ++++++++++ .../ButtonI18nResourceStrategy.java | 16 ++++++++++ .../CalendarI18nResourceStrategy.java | 16 ++++++++++ .../CheckGroupI18nResourceStrategy.java | 16 ++++++++++ .../ComboListI18nResourceStrategy.java | 16 ++++++++++ .../ComboLookupI18nResourceStrategy.java | 16 ++++++++++ .../DataGridI18nResourceStrategy.java | 16 ++++++++++ .../DateBoxI18nResourceStrategy.java | 16 ++++++++++ .../DatePickerI18nResourceStrategy.java | 16 ++++++++++ .../DefaultComponentI18nResourceStrategy.java | 16 ++++++++++ .../EnumFieldI18nResourceStrategy.java | 16 ++++++++++ .../FieldSetI18nResourceStrategy.java | 16 ++++++++++ ...FileUploadPreviewI18nResourceStrategy.java | 16 ++++++++++ .../FooterI18nResourceStrategy.java | 16 ++++++++++ .../GridFieldI18nResourceStrategy.java | 16 ++++++++++ .../HeaderI18nResourceStrategy.java | 16 ++++++++++ .../HelpProviderI18nResourceStrategy.java | 16 ++++++++++ .../HtmlTemplateI18nResourceStrategy.java | 16 ++++++++++ .../InputGroupI18nResourceStrategy.java | 16 ++++++++++ .../LanguageTextBoxI18nResourceStrategy.java | 16 ++++++++++ .../ListFilterI18nResourceStrategy.java | 16 ++++++++++ .../ListNavI18nResourceStrategy.java | 16 ++++++++++ .../ListViewII18nResourceStrategy.java | 16 ++++++++++ .../LookupI18nResourceStrategy.java | 16 ++++++++++ .../MultiTextBoxI18nResourceStrategy.java | 16 ++++++++++ .../NavTabI18nResourceStrategy.java | 16 ++++++++++ .../NumberRangeI18nResourceStrategy.java | 16 ++++++++++ .../NumberSpinnerI18nResourceStrategy.java | 16 ++++++++++ .../NumericBoxI18nResourceStrategy.java | 16 ++++++++++ ...anizationSelectorI18nResourceStrategy.java | 16 ++++++++++ ...PersonnelSelectorI18nResourceStrategy.java | 16 ++++++++++ .../QueryFrameworkI18nResourceStrategy.java | 16 ++++++++++ .../QuerySchemeI18nResourceStrategy.java | 16 ++++++++++ .../RadioGroupI18nResourceStrategy.java | 16 ++++++++++ .../RichTextBoxI18nResourceStrategy.java | 16 ++++++++++ .../ScrollSpyI18nResourceStrategy.java | 16 ++++++++++ .../SectionI18nResourceStrategy.java | 16 ++++++++++ .../TagI18nResourceStrategy.java | 16 ++++++++++ .../TagsI18nResourceStrategy.java | 16 ++++++++++ .../TextBoxI18nResourceStrategy.java | 16 ++++++++++ .../TimePickerI18nResourceStrategy.java | 16 ++++++++++ .../TimeSpinnerI18nResourceStrategy.java | 16 ++++++++++ .../ToolBarItemI18nResourceStrategy.java | 16 ++++++++++ .../ViewChangeI18nResourceStrategy.java | 16 ++++++++++ .../WizardI18nResourceStrategy.java | 16 ++++++++++ .../AbstractComponentIdStrategy.java | 16 ++++++++++ .../idstrategy/ComponentIdFactory.java | 16 ++++++++++ .../strategy/idstrategy/ComponentIdType.java | 16 ++++++++++ .../idstrategy/DefaultIdStrategy.java | 16 ++++++++++ .../idstrategy/HtmlTemplateIdStrategy.java | 16 ++++++++++ .../idstrategy/IComponentIdStrategy.java | 16 ++++++++++ .../AbstractComponentNameStrategy.java | 16 ++++++++++ .../namestrategy/CaptionStrategy.java | 16 ++++++++++ .../namestrategy/ComponentNameFactory.java | 16 ++++++++++ .../namestrategy/ComponentNameType.java | 16 ++++++++++ .../namestrategy/DefaultNameStrategy.java | 16 ++++++++++ .../namestrategy/IComponentNameStrategy.java | 16 ++++++++++ .../strategy/namestrategy/LabelStrategy.java | 16 ++++++++++ .../PresetQuerySolutionNameStrategy.java | 16 ++++++++++ .../namestrategy/QueryNameStrategy.java | 16 ++++++++++ .../strategy/namestrategy/TextStrategy.java | 16 ++++++++++ .../strategy/namestrategy/TitleStrategy.java | 16 ++++++++++ .../i18n/constant/ComponentType.java | 16 ++++++++++ .../i18n/constant/I18nResourceConstant.java | 16 ++++++++++ .../FormMetadataInitialization.java | 16 ++++++++++ .../FormMetadataCreateLicControlListener.java | 16 ++++++++++ .../lic/ModuleWithMetadataType.java | 16 ++++++++++ .../manager/FormMetadataManager.java | 16 ++++++++++ .../metadata/FormMetadataContent.java | 16 ++++++++++ .../metadata/FormMetadataContentService.java | 16 ++++++++++ .../metadata/formdom/FormDOM.java | 16 ++++++++++ .../metadata/formdom/FormDomService.java | 16 ++++++++++ .../metadata/formdom/FormOptions.java | 16 ++++++++++ .../metadata/i18nsetting/I18nSetting.java | 16 ++++++++++ .../languagepackage/LanguagePackage.java | 16 ++++++++++ .../formmetadata/metadata/module/Module.java | 24 +++++++-------- .../metadata/module/ModuleService.java | 16 ++++++++++ .../replication/FormMetadataCmdManager.java | 24 +++++++-------- ...rmMetadataCmpSourceTsFileCloneManager.java | 24 +++++++-------- .../replication/FormMetadataReplicator.java | 24 +++++++-------- .../replication/FormMetadataSmManager.java | 24 +++++++-------- .../replication/FormMetadataVoManager.java | 24 +++++++-------- .../MetaDataReplicateBeforeValidator.java | 16 ++++++++++ .../replication/MetadataCloneManager.java | 16 ++++++++++ .../MetadataContentCloneManager.java | 16 ++++++++++ .../MetadataHeaderCloneManager.java | 16 ++++++++++ .../MetadataReplicationContext.java | 16 ++++++++++ .../MetadataReplicationContextService.java | 16 ++++++++++ .../ProjectInformationManager.java | 16 ++++++++++ .../adjust/CloneAdjustStrategyFactory.java | 16 ++++++++++ .../adjust/DefaultCloneAdjustStrategy.java | 16 ++++++++++ .../FormMetadataCloneAdjustStrategy.java | 16 ++++++++++ .../GspMetadataCloneAdjustStrategy.java | 16 ++++++++++ .../GspViewModelCloneAdjustStrategy.java | 16 ++++++++++ ...ebCommandsMetadataCloneAdjustStrategy.java | 16 ++++++++++ ...bComponentMetadataCloneAdjustStrategy.java | 16 ++++++++++ .../FormMetadataContentSerializer.java | 16 ++++++++++ .../FormMetadataJsonSerializer.java | 16 ++++++++++ .../FormMetadataTransferSerializer.java | 16 ++++++++++ .../FormMetadataCommonServiceImpl.java | 16 ++++++++++ .../service/FormMetadataRTService.java | 24 +++++++-------- .../service/FormMetataService.java | 24 +++++++-------- .../FormMetadataWebServiceImpl.java | 16 ++++++++++ web-form-process-api/pom.xml | 16 ++++++++++ web-form-process/pom.xml | 16 ++++++++++ web-frontendproject-api/pom.xml | 16 ++++++++++ .../entity/ChosenFormItem.java | 16 ++++++++++ .../entity/ChosenFormList.java | 16 ++++++++++ .../FrontendProjectGenerateParameter.java | 16 ++++++++++ .../resolver/ResolveFormMetadataItem.java | 16 ++++++++++ .../resolver/ResolveFormMetadataList.java | 16 ++++++++++ .../webservice/FormDynamicParameter.java | 16 ++++++++++ .../FormMetadataDebugUriWebService.java | 16 ++++++++++ .../webservice/FrontendProjectWebService.java | 16 ++++++++++ .../webservice/ZeroCodeWebService.java | 16 ++++++++++ .../zerocode/ZeroCodeFormFormatParameter.java | 16 ++++++++++ .../zerocode/ZeroCodeFormParameter.java | 16 ++++++++++ .../ZeroCodeFormRefMetadataParameter.java | 16 ++++++++++ .../zerocode/ZeroCodeParameter.java | 16 ++++++++++ .../zerocode/ZeroCodeService.java | 16 ++++++++++ web-frontendproject/pom.xml | 16 ++++++++++ .../FrontendProjectCompiler.java | 16 ++++++++++ .../FrontendProjectDeployer.java | 16 ++++++++++ .../FrontendProjectExtractor.java | 16 ++++++++++ .../FrontendProjectManager.java | 16 ++++++++++ .../FrontendProjectService.java | 16 ++++++++++ .../FrontendProjectUtility.java | 16 ++++++++++ .../NpmPackageCheckUpdate.java | 16 ++++++++++ .../build/FrontendProjectBuild.java | 16 ++++++++++ .../ChangeDetectExecuteManager.java | 16 ++++++++++ .../ChangeDetectExecuteResult.java | 16 ++++++++++ .../ChangeDetectExecuteService.java | 16 ++++++++++ .../changedetect/ChangeDetectExecuteType.java | 16 ++++++++++ .../changedetect/ExcludePathEntity.java | 16 ++++++++++ ...CompileChangeDetectStepExecuteService.java | 16 ++++++++++ ...CompileChangeDetectExecuteServiceImpl.java | 16 ++++++++++ .../compile/CompileChangeDetectType.java | 16 ++++++++++ .../FileChangeStepExecuteImpl.java | 16 ++++++++++ .../context/ChangeDetectContext.java | 16 ++++++++++ ...enerateChangeDetectStepExecuteService.java | 16 ++++++++++ ...enerateChangeDetectExecuteServiceImpl.java | 16 ++++++++++ .../GenerateChangeDetectStepType.java | 16 ++++++++++ .../FileChangeStepExecuteImpl.java | 16 ++++++++++ .../MetadataChangeStepExecuteImpl.java | 24 +++++++-------- ...bstractChangeDetectStepExecuteService.java | 16 ++++++++++ .../step/ChangeDetectStepExecuteResult.java | 16 ++++++++++ .../step/ChangeDetectStepExecuteService.java | 16 ++++++++++ .../FormMetadataDebugUriConfiguration.java | 16 ++++++++++ .../config/FrontendProjectConfiguration.java | 16 ++++++++++ .../config/ZeroCodeConfiguration.java | 16 ++++++++++ .../SourceServicePathGenerator.java | 16 ++++++++++ .../AbstractFormMetadataDebugUri.java | 16 ++++++++++ .../debuguri/FormMetadataDebugUriService.java | 16 ++++++++++ .../FormMetadataDebugUriWithMobile.java | 24 +++++++-------- .../debuguri/FormMetadataDebugUriWithPC.java | 16 ++++++++++ .../deploy/FrontendProjectDeploy.java | 16 ++++++++++ .../deploy/SingleDynamicFormDeploy.java | 16 ++++++++++ .../FormDynamicMetadataResolver.java | 16 ++++++++++ .../FormDynamicParameterValidator.java | 16 ++++++++++ .../FormDynamicSourceCodeGenerate.java | 16 ++++++++++ .../formdynamic/FormDynamicTagGetter.java | 16 ++++++++++ .../generate/FrontendProjectGenerate.java | 16 ++++++++++ .../metadata/FormMetadataManager.java | 16 ++++++++++ .../pageflow/PageFlowMetadataManager.java | 24 +++++++-------- .../resolver/FormMetadataResolver.java | 16 ++++++++++ .../FormMetadataDebugUriWebServiceImpl.java | 16 ++++++++++ .../FrontendProjectWebServiceImpl.java | 16 ++++++++++ .../webservice/ZeroCodeWebServiceImpl.java | 16 ++++++++++ .../zerocode/ZeroCodeConstants.java | 16 ++++++++++ .../ZeroCodeParameterInitialization.java | 16 ++++++++++ .../zerocode/ZeroCodeParameterValidator.java | 16 ++++++++++ .../zerocode/ZeroCodeServiceImpl.java | 16 ++++++++++ .../operation/CommandMetadataOperation.java | 16 ++++++++++ .../operation/EapiMetadataOperation.java | 16 ++++++++++ .../operation/FormExpressionOperation.java | 16 ++++++++++ .../FormMetadataContentOperation.java | 16 ++++++++++ .../operation/MetaDataOperationManager.java | 16 ++++++++++ .../operation/PageFlowMetadataOperation.java | 16 ++++++++++ .../StateMachineMetadataOperation.java | 16 ++++++++++ .../zerocode/operation/ZeroCodeManager.java | 16 ++++++++++ .../services/ServicePathGenerator.java | 16 ++++++++++ .../AbstractSourceCodeOperation.java | 16 ++++++++++ .../sourcegenerate/ISourceCodeOperation.java | 16 ++++++++++ .../sourcegenerate/SourceCodeManager.java | 16 ++++++++++ .../SourceCodeMobileOperation.java | 24 +++++++-------- .../sourcegenerate/SourceCodePCOperation.java | 24 +++++++-------- .../SourceCodePathGenerator.java | 16 ++++++++++ .../AbstractWebDevJsonOperation.java | 16 ++++++++++ .../webdevjson/IWevDevJsonOperation.java | 16 ++++++++++ .../webdevjson/WebDevJsonManager.java | 16 ++++++++++ .../webdevjson/WebDevJsonPathGenerator.java | 16 ++++++++++ .../webdevjson/WebDevMobileJsonOperation.java | 16 ++++++++++ .../operation/webdevjson/WebDevPCJson.java | 16 ++++++++++ .../webdevjson/WebDevPCJsonOperation.java | 16 ++++++++++ web-ide-api/pom.xml | 16 ++++++++++ .../inspur/edp/web/ide/api/PluginConfig.java | 16 ++++++++++ .../inspur/edp/web/ide/api/WebIDEService.java | 16 ++++++++++ web-ide-webapi/pom.xml | 16 ++++++++++ .../ide/config/webapi/common/FileUtil.java | 16 ++++++++++ .../webapi/config/WebIdeConfiguration.java | 16 ++++++++++ .../control/WebIDEServiceController.java | 16 ++++++++++ .../webapi/entity/PanelDescription.java | 16 ++++++++++ .../ide/config/webapi/entity/PanelStyle.java | 16 ++++++++++ .../config/webapi/entity/PluginConfig.java | 16 ++++++++++ .../config/webapi/service/WebIDEService.java | 16 ++++++++++ web-npmpackage-api/pom.xml | 16 ++++++++++ .../entity/NpmInstallPackageParameter.java | 16 ++++++++++ .../api/entity/NpmInstallParameter.java | 16 ++++++++++ .../entity/NpmPackageCheckUpdateOptions.java | 16 ++++++++++ .../api/entity/NpmPackageConstants.java | 16 ++++++++++ .../api/entity/NpmPackageResponse.java | 16 ++++++++++ .../api/entity/NpmPackageResponseLevel.java | 16 ++++++++++ .../NpmPackageJsonDependencyInfo.java | 16 ++++++++++ .../packagejson/NpmPackageJsonInfo.java | 16 ++++++++++ .../api/entity/settings/NpmRepository.java | 16 ++++++++++ .../api/entity/settings/NpmSettingConfig.java | 16 ++++++++++ .../api/entity/settings/NpmSettingMode.java | 16 ++++++++++ .../api/entity/settings/NpmSettings.java | 16 ++++++++++ .../api/entity/settings/NpmUpdatePolicy.java | 16 ++++++++++ .../NpmPackageInstallWebService.java | 16 ++++++++++ .../NpmPackagePublishWebService.java | 16 ++++++++++ .../api/webservice/NpmPackageWebService.java | 16 ++++++++++ web-npmpackage-core/pom.xml | 16 ++++++++++ .../NpmCacheCleanCommandExecutor.java | 16 ++++++++++ .../core/config/NpmPackageConfiguration.java | 16 ++++++++++ .../NpmPackageInstallConfiguration.java | 16 ++++++++++ .../npminstall/NodeModulesPathGenerator.java | 16 ++++++++++ .../npminstall/NpmInstallCommandExecutor.java | 16 ++++++++++ .../NpmInstallCommandParameterGenerator.java | 16 ++++++++++ .../NpmInstallLockFilePathGenerator.java | 16 ++++++++++ .../core/npminstall/NpmInstallManager.java | 16 ++++++++++ .../NpmInstallParameterValidator.java | 16 ++++++++++ .../npminstall/NpmInstallingParameter.java | 16 ++++++++++ .../npminstall/NpmInstallingTagManager.java | 16 ++++++++++ .../npminstall/NpmRepositoryConnection.java | 16 ++++++++++ .../npminstall/PackageJsonCopyManager.java | 16 ++++++++++ .../npminstall/PackageJsonPathGenerator.java | 16 ++++++++++ .../global/GlobalNpmDeployPathGenerator.java | 16 ++++++++++ .../GlobalNpmInstallCommandExecutor.java | 16 ++++++++++ ...alNpmInstallCommandParameterGenerator.java | 16 ++++++++++ .../GlobalPackageJsonPathGenerator.java | 16 ++++++++++ .../global/NpmInstallGlobalManager.java | 16 ++++++++++ .../npmlogin/NpmLoginCommandExecutor.java | 16 ++++++++++ .../NpmLoginCommandParameterGenerator.java | 16 ++++++++++ .../npmlogout/NpmLogoutCommandExecutor.java | 16 ++++++++++ .../NpmLogoutCommandParameterGenerator.java | 16 ++++++++++ .../core/npmpackagecheck/NpmPackageCheck.java | 16 ++++++++++ .../core/npmsetting/NpmSettingConstant.java | 16 ++++++++++ .../core/npmsetting/NpmSettingConvertor.java | 16 ++++++++++ .../npmsetting/NpmSettingEncryptService.java | 16 ++++++++++ .../npmsetting/NpmSettingInitialization.java | 16 ++++++++++ .../core/npmsetting/NpmSettingManager.java | 16 ++++++++++ .../npmsetting/NpmSettingPathManager.java | 16 ++++++++++ .../core/npmsetting/NpmSettingReader.java | 16 ++++++++++ .../core/npmsetting/NpmSettingWriter.java | 16 ++++++++++ .../service/NpmPackageInstallService.java | 16 ++++++++++ .../core/service/NpmPackageService.java | 16 ++++++++++ .../webservice/NpmPacakgeWebServiceImpl.java | 16 ++++++++++ .../NpmPackageInstallWebServiceImpl.java | 16 ++++++++++ web-npmpackage-patch/pom.xml | 16 ++++++++++ .../web/npmpackagepatch/FileOperation.java | 16 ++++++++++ .../MyPropertyNamingStrategy.java | 16 ++++++++++ .../NpmPackagePatchService.java | 16 ++++++++++ .../PackageJsonFileManager.java | 16 ++++++++++ .../web/npmpackagepatch/PatchConstants.java | 16 ++++++++++ .../web/npmpackagepatch/RescureReadFiles.java | 16 ++++++++++ .../npmpackagepatch/SerializePackageJson.java | 16 ++++++++++ .../PackageJsonDependencyInfo.java | 16 ++++++++++ .../packagejson/PackageJsonInfo.java | 16 ++++++++++ .../packagejson/SerializedPackageJson.java | 16 ++++++++++ web-pageflow-metadata/pom.xml | 16 ++++++++++ .../pageflow/metadata/entity/AdaptedPage.java | 16 ++++++++++ .../entity/AdaptedPageFlowMetadataEntity.java | 16 ++++++++++ .../AdaptedPageFlowMetadataEntityService.java | 16 ++++++++++ .../metadata/entity/AdaptedRoute.java | 16 ++++++++++ .../web/pageflow/metadata/entity/Page.java | 16 ++++++++++ .../entity/PageFlowMetadataEntity.java | 16 ++++++++++ .../entity/PageFlowMetadataEntityManager.java | 16 ++++++++++ .../pageflow/metadata/entity/PagePublish.java | 16 ++++++++++ .../web/pageflow/metadata/entity/Project.java | 16 ++++++++++ .../web/pageflow/metadata/entity/Route.java | 16 ++++++++++ .../PageFlowMetadataEventListener.java | 16 ++++++++++ .../PageFlowMetadataEntityManager.java | 16 ++++++++++ .../PageFlowMetadataEntitySerializer.java | 16 ++++++++++ .../PageFlowMetadataTransferSerializer.java | 16 ++++++++++ .../PageFlowMetadataUpdateService.java | 16 ++++++++++ .../metadata/service/RouteMetataService.java | 24 +++++++-------- web-sourcecode-metadata/pom.xml | 16 ++++++++++ .../entity/RelativePathEnumEntity.java | 16 ++++++++++ .../metadata/entity/SourceCodeItemEntity.java | 16 ++++++++++ .../entity/SourceCodeMetadataEntity.java | 16 ++++++++++ .../SourceCodeMetadataEventListener.java | 16 ++++++++++ .../manager/SourceCodeMetadataManager.java | 16 ++++++++++ .../SourceCodeMetadataEntitySerializer.java | 16 ++++++++++ .../SourceCodeMetadataTransferSerializer.java | 16 ++++++++++ .../utility/FileOperationExtensions.java | 16 ++++++++++ .../utility/SourceCodeMetadataUtility.java | 16 ++++++++++ web-statemachine/pom.xml | 16 ++++++++++ .../manager/StateMachineMetadataManager.java | 16 ++++++++++ .../metadata/StateMachineMetadataContent.java | 16 ++++++++++ .../serializer/StateMachineSerializer.java | 16 ++++++++++ .../StateMachineTransferSerializer.java | 16 ++++++++++ web-tsfile-api/pom.xml | 16 ++++++++++ .../edp/web/tsfile/api/entity/FileObject.java | 16 ++++++++++ .../web/tsfile/api/service/TsFileService.java | 16 ++++++++++ .../api/webservice/TsFileWebService.java | 16 ++++++++++ web-tsfile-core/pom.xml | 16 ++++++++++ .../web/tsfile/core/TsFileWebServiceImpl.java | 16 ++++++++++ .../core/config/TsFileConfiguration.java | 16 ++++++++++ .../core/service/TsFileService4WebApi.java | 16 ++++++++++ .../core/service/TsFileServiceImpl.java | 16 ++++++++++ .../edp/web/tsfile/core/util/NameUtil.java | 16 ++++++++++ xpath0.1.bat | 16 ++++++++++ 667 files changed, 10549 insertions(+), 328 deletions(-) diff --git a/.mvn/settings.xml b/.mvn/settings.xml index c1a2a190..b4494e1c 100644 --- a/.mvn/settings.xml +++ b/.mvn/settings.xml @@ -1,3 +1,19 @@ + + .mvn/repository diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties index 43d9d397..ce4e0fc5 100644 --- a/.mvn/wrapper/maven-wrapper.properties +++ b/.mvn/wrapper/maven-wrapper.properties @@ -1,2 +1,18 @@ +# +# Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. +# +# Licensed 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. +# + # distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.5.4/apache-maven-3.5.4-bin.zip distributionUrl=http://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.6.1/apache-maven-3.6.1-bin.zip \ No newline at end of file diff --git a/jitengine-web-api/pom.xml b/jitengine-web-api/pom.xml index 52a51ca1..20ff38a3 100644 --- a/jitengine-web-api/pom.xml +++ b/jitengine-web-api/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/jitengine-web-api/src/main/java/com/inspur/edp/web/jitengine/web/api/service/JitEngineService.java b/jitengine-web-api/src/main/java/com/inspur/edp/web/jitengine/web/api/service/JitEngineService.java index 2e8566ca..0a6a0f78 100644 --- a/jitengine-web-api/src/main/java/com/inspur/edp/web/jitengine/web/api/service/JitEngineService.java +++ b/jitengine-web-api/src/main/java/com/inspur/edp/web/jitengine/web/api/service/JitEngineService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.web.api.service; public interface JitEngineService { diff --git a/jitengine-web-api/src/main/java/com/inspur/edp/web/jitengine/web/api/service/MobileApproveReviewParameter.java b/jitengine-web-api/src/main/java/com/inspur/edp/web/jitengine/web/api/service/MobileApproveReviewParameter.java index 1aa373d8..9a97467b 100644 --- a/jitengine-web-api/src/main/java/com/inspur/edp/web/jitengine/web/api/service/MobileApproveReviewParameter.java +++ b/jitengine-web-api/src/main/java/com/inspur/edp/web/jitengine/web/api/service/MobileApproveReviewParameter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.web.api.service; /** diff --git a/jitengine-web-api/src/main/java/com/inspur/edp/web/jitengine/web/api/service/MobileApproveReviewResponse.java b/jitengine-web-api/src/main/java/com/inspur/edp/web/jitengine/web/api/service/MobileApproveReviewResponse.java index 7e0b9350..c49364b3 100644 --- a/jitengine-web-api/src/main/java/com/inspur/edp/web/jitengine/web/api/service/MobileApproveReviewResponse.java +++ b/jitengine-web-api/src/main/java/com/inspur/edp/web/jitengine/web/api/service/MobileApproveReviewResponse.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.web.api.service; /** diff --git a/jitengine-web-api/src/main/java/com/inspur/edp/web/jitengine/web/api/webservice/JitEngineWebService.java b/jitengine-web-api/src/main/java/com/inspur/edp/web/jitengine/web/api/webservice/JitEngineWebService.java index 251df21e..f25bae6f 100644 --- a/jitengine-web-api/src/main/java/com/inspur/edp/web/jitengine/web/api/webservice/JitEngineWebService.java +++ b/jitengine-web-api/src/main/java/com/inspur/edp/web/jitengine/web/api/webservice/JitEngineWebService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.web.api.webservice; import com.inspur.edp.web.jitengine.web.api.service.MobileApproveReviewParameter; diff --git a/jitengine-web-core/pom.xml b/jitengine-web-core/pom.xml index 2c2c459f..799f694e 100644 --- a/jitengine-web-core/pom.xml +++ b/jitengine-web-core/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/config/JitEngineWebConfiguration.java b/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/config/JitEngineWebConfiguration.java index f071bc98..937c8f75 100644 --- a/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/config/JitEngineWebConfiguration.java +++ b/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/config/JitEngineWebConfiguration.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.web.core.config; import io.iec.edp.caf.rest.RESTEndpoint; diff --git a/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/service/JitEngineServiceImpl.java b/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/service/JitEngineServiceImpl.java index 4342d445..1e94fe8d 100644 --- a/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/service/JitEngineServiceImpl.java +++ b/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/service/JitEngineServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.web.core.service; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/service/MobilEApprovePreviewImpl.java b/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/service/MobilEApprovePreviewImpl.java index 8604b796..f95f302c 100644 --- a/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/service/MobilEApprovePreviewImpl.java +++ b/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/service/MobilEApprovePreviewImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.web.core.service; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/service/MobileApproveDocker.java b/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/service/MobileApproveDocker.java index 2c23ba85..e1c84754 100644 --- a/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/service/MobileApproveDocker.java +++ b/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/service/MobileApproveDocker.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.web.core.service; import com.inspur.edp.web.common.io.FileUtility; diff --git a/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/webservice/JitEngineWebSericeImpl.java b/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/webservice/JitEngineWebSericeImpl.java index 5d0227fa..2ee5585b 100644 --- a/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/webservice/JitEngineWebSericeImpl.java +++ b/jitengine-web-core/src/main/java/com/inspur/edp/web/jitengine/web/core/webservice/JitEngineWebSericeImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.web.core.webservice; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/mvnw b/mvnw index 5551fde8..16c34be7 100644 --- a/mvnw +++ b/mvnw @@ -1,22 +1,19 @@ #!/bin/sh -# ---------------------------------------------------------------------------- -# 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 +# Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. +# +# Licensed 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. # -# 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. -# ---------------------------------------------------------------------------- # ---------------------------------------------------------------------------- # Maven2 Start Up Batch script diff --git a/pom.xml b/pom.xml index 19683ee2..cf939a15 100644 --- a/pom.xml +++ b/pom.xml @@ -1,4 +1,20 @@ + + 4.0.0 diff --git a/runtime-api/pom.xml b/runtime-api/pom.xml index 99d055dc..baa4d415 100644 --- a/runtime-api/pom.xml +++ b/runtime-api/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/DeployTargetEnum.java b/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/DeployTargetEnum.java index f9e06e74..9f1b8f0d 100644 --- a/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/DeployTargetEnum.java +++ b/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/DeployTargetEnum.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.api.entity; /** diff --git a/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitBuildParameter.java b/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitBuildParameter.java index ea1f8058..44e04977 100644 --- a/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitBuildParameter.java +++ b/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitBuildParameter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.api.entity; import java.util.HashMap; diff --git a/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitBuildRefMetadata.java b/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitBuildRefMetadata.java index ca7b71a0..0d9ff9fb 100644 --- a/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitBuildRefMetadata.java +++ b/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitBuildRefMetadata.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.api.entity; /** diff --git a/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitBuildResponse.java b/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitBuildResponse.java index 8c13cddd..292b180f 100644 --- a/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitBuildResponse.java +++ b/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitBuildResponse.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.api.entity; import java.util.HashMap; diff --git a/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitMetadataTypeEnum.java b/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitMetadataTypeEnum.java index 9505797e..0b46e283 100644 --- a/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitMetadataTypeEnum.java +++ b/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitMetadataTypeEnum.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.api.entity; /** diff --git a/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitRuntimeConstant.java b/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitRuntimeConstant.java index a619da8a..d8b5f055 100644 --- a/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitRuntimeConstant.java +++ b/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/entity/JitRuntimeConstant.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.api.entity; /** diff --git a/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/service/JitBuildService.java b/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/service/JitBuildService.java index b15f5d6b..79bb5cc8 100644 --- a/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/service/JitBuildService.java +++ b/runtime-api/src/main/java/com/inspur/edp/web/jitruntimebuild/api/service/JitBuildService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.api.service; import com.inspur.edp.web.jitruntimebuild.api.entity.JitBuildParameter; diff --git a/runtime-core/pom.xml b/runtime-core/pom.xml index cbbfe27a..5936091f 100644 --- a/runtime-core/pom.xml +++ b/runtime-core/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/builddeploy/BuildDeployManager.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/builddeploy/BuildDeployManager.java index a68fbbc1..bbc78e75 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/builddeploy/BuildDeployManager.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/builddeploy/BuildDeployManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.builddeploy; import com.inspur.edp.web.common.io.FileUtility; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/buildparametergenerator/JitBuildParameterGenerator.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/buildparametergenerator/JitBuildParameterGenerator.java index 622b0e2c..bc18fdf8 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/buildparametergenerator/JitBuildParameterGenerator.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/buildparametergenerator/JitBuildParameterGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.buildparametergenerator; import com.inspur.edp.web.common.io.FileUtility; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/buildparametervalidator/JitBuildParameterValidator.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/buildparametervalidator/JitBuildParameterValidator.java index 412876f7..2428cba1 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/buildparametervalidator/JitBuildParameterValidator.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/buildparametervalidator/JitBuildParameterValidator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.buildparametervalidator; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/config/JitBuildConfiguration.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/config/JitBuildConfiguration.java index 3ef0717f..46138c47 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/config/JitBuildConfiguration.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/config/JitBuildConfiguration.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.config; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/constant/FormJsonFileSuffixConstant.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/constant/FormJsonFileSuffixConstant.java index 639bb183..0c65a323 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/constant/FormJsonFileSuffixConstant.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/constant/FormJsonFileSuffixConstant.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.constant; import com.inspur.edp.web.common.io.FileUtility; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/AbstractFormJsonFileGenerator.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/AbstractFormJsonFileGenerator.java index 88769ee9..702853d5 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/AbstractFormJsonFileGenerator.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/AbstractFormJsonFileGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.formjsonfilegenerator; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/CommandJsonFileGenerator.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/CommandJsonFileGenerator.java index e9f68ac8..038d15be 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/CommandJsonFileGenerator.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/CommandJsonFileGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.formjsonfilegenerator; import com.fasterxml.jackson.core.JsonProcessingException; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/EapiJsonFileGenerator.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/EapiJsonFileGenerator.java index 3873b25c..4f2602e5 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/EapiJsonFileGenerator.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/EapiJsonFileGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.formjsonfilegenerator; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormJsonFileManager.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormJsonFileManager.java index 948c6038..ecb276f8 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormJsonFileManager.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormJsonFileManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.formjsonfilegenerator; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormModuleWithBuildParameter.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormModuleWithBuildParameter.java index 55ac550a..163fa508 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormModuleWithBuildParameter.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormModuleWithBuildParameter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.formjsonfilegenerator; import com.inspur.edp.web.common.serialize.SerializeUtility; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormModuleWithBuildParameterManager.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormModuleWithBuildParameterManager.java index 9bed1438..b8b5004e 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormModuleWithBuildParameterManager.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormModuleWithBuildParameterManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.formjsonfilegenerator; import com.inspur.edp.web.common.serialize.SerializeUtility; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormRouteJsonFileGenerator.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormRouteJsonFileGenerator.java index a031f79f..5455230b 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormRouteJsonFileGenerator.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormRouteJsonFileGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.formjsonfilegenerator; import com.inspur.edp.web.common.JITEngineConstants; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormRuntimeMetadataEntity.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormRuntimeMetadataEntity.java index 5e2fe2f4..471675f4 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormRuntimeMetadataEntity.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FormRuntimeMetadataEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.formjsonfilegenerator; import com.fasterxml.jackson.databind.JsonNode; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FrmJsonFileGenerator.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FrmJsonFileGenerator.java index 1eac227e..cfb83e7b 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FrmJsonFileGenerator.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/FrmJsonFileGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.formjsonfilegenerator; import com.inspur.edp.cdp.web.component.metadata.define.WebComponentMetadata; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/JsonFileGeneratorFactory.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/JsonFileGeneratorFactory.java index 7fccd906..53ee50fa 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/JsonFileGeneratorFactory.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/JsonFileGeneratorFactory.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.formjsonfilegenerator; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/JsonFileGeneratorInterface.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/JsonFileGeneratorInterface.java index dd3ec246..78e0a85f 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/JsonFileGeneratorInterface.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/JsonFileGeneratorInterface.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.formjsonfilegenerator; public interface JsonFileGeneratorInterface { diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/ResourceJsonFileGenerator.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/ResourceJsonFileGenerator.java index 455e7ac0..e470bd56 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/ResourceJsonFileGenerator.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/ResourceJsonFileGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.formjsonfilegenerator; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/StateMachineJsonFileGenerator.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/StateMachineJsonFileGenerator.java index 7eda0ede..b459f477 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/StateMachineJsonFileGenerator.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/StateMachineJsonFileGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.formjsonfilegenerator; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/formroute/FormRouteEntity.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/formroute/FormRouteEntity.java index 502a707b..ad47c666 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/formroute/FormRouteEntity.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/formroute/FormRouteEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.formjsonfilegenerator.formroute; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/formroute/FormRoutePageEntity.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/formroute/FormRoutePageEntity.java index b1bee8bc..93fea0fd 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/formroute/FormRoutePageEntity.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/formroute/FormRoutePageEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.formjsonfilegenerator.formroute; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/formroute/FormRouteProjectEntity.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/formroute/FormRouteProjectEntity.java index b4c0c68b..82795ac6 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/formroute/FormRouteProjectEntity.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/formjsonfilegenerator/formroute/FormRouteProjectEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.formjsonfilegenerator.formroute; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/i18n/GeneratedI18nResourceList.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/i18n/GeneratedI18nResourceList.java index 737b3d4a..a1e07210 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/i18n/GeneratedI18nResourceList.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/i18n/GeneratedI18nResourceList.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.i18n; import com.inspur.edp.web.jitengine.i18nresource.GeneratedI8nResource; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/i18n/GeneratedI8nResource.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/i18n/GeneratedI8nResource.java index 18ee0b32..80a78078 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/i18n/GeneratedI8nResource.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/i18n/GeneratedI8nResource.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.i18n; /** diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/service/JitBuildServiceImp.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/service/JitBuildServiceImp.java index c18a5496..0486cbdc 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/service/JitBuildServiceImp.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/service/JitBuildServiceImp.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.service; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/sourcecodemetadata/SourceCodeMetadataManager.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/sourcecodemetadata/SourceCodeMetadataManager.java index 5d21e60c..46056014 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/sourcecodemetadata/SourceCodeMetadataManager.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/sourcecodemetadata/SourceCodeMetadataManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.sourcecodemetadata; import com.inspur.edp.web.common.io.FileUtility; diff --git a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/utility/JitBuildUtility.java b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/utility/JitBuildUtility.java index a8f5532f..d650336b 100644 --- a/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/utility/JitBuildUtility.java +++ b/runtime-core/src/main/java/com/inspur/edp/web/jitruntimebuild/core/utility/JitBuildUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.core.utility; import com.inspur.edp.web.common.io.FileUtility; diff --git a/runtime-scriptcache-api/pom.xml b/runtime-scriptcache-api/pom.xml index 532483d5..43d1e203 100644 --- a/runtime-scriptcache-api/pom.xml +++ b/runtime-scriptcache-api/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/FormProjectCache.java b/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/FormProjectCache.java index 51d6d8b2..0623fac3 100644 --- a/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/FormProjectCache.java +++ b/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/FormProjectCache.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.api.entity; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/FormScriptCache.java b/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/FormScriptCache.java index e67315b6..9fa79272 100644 --- a/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/FormScriptCache.java +++ b/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/FormScriptCache.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.api.entity; diff --git a/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/FormScriptCacheContent.java b/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/FormScriptCacheContent.java index 81c03dee..cfbd2d56 100644 --- a/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/FormScriptCacheContent.java +++ b/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/FormScriptCacheContent.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.api.entity; import com.inspur.edp.web.common.converter.WebEntityConverter; diff --git a/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/PublishScriptRequest.java b/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/PublishScriptRequest.java index c60a47ba..77bb9125 100644 --- a/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/PublishScriptRequest.java +++ b/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/PublishScriptRequest.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.api.entity; /** diff --git a/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/ScriptCacheCheckVersionRequest.java b/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/ScriptCacheCheckVersionRequest.java index af5961e6..91b21b79 100644 --- a/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/ScriptCacheCheckVersionRequest.java +++ b/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/ScriptCacheCheckVersionRequest.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.api.entity; /** diff --git a/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/ScriptCacheResponse.java b/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/ScriptCacheResponse.java index a5293e09..cbcee60d 100644 --- a/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/ScriptCacheResponse.java +++ b/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/entity/ScriptCacheResponse.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.api.entity; /** diff --git a/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/service/ScriptCacheService.java b/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/service/ScriptCacheService.java index 0406a848..46debcc4 100644 --- a/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/service/ScriptCacheService.java +++ b/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/service/ScriptCacheService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.api.service; import com.inspur.edp.web.jitruntimebuild.scriptcache.api.entity.PublishScriptRequest; diff --git a/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/webservice/ScriptCacheWebService.java b/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/webservice/ScriptCacheWebService.java index 31229a73..4e498c55 100644 --- a/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/webservice/ScriptCacheWebService.java +++ b/runtime-scriptcache-api/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/api/webservice/ScriptCacheWebService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.api.webservice; import com.inspur.edp.web.jitruntimebuild.scriptcache.api.entity.ScriptCacheCheckVersionRequest; diff --git a/runtime-scriptcache-api/src/main/resources/log4j2.properties b/runtime-scriptcache-api/src/main/resources/log4j2.properties index 328db356..16dbeda7 100644 --- a/runtime-scriptcache-api/src/main/resources/log4j2.properties +++ b/runtime-scriptcache-api/src/main/resources/log4j2.properties @@ -1,3 +1,19 @@ +# +# Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. +# +# Licensed 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. +# + appender.out.type = Console appender.out.name = out diff --git a/runtime-scriptcache/pom.xml b/runtime-scriptcache/pom.xml index a2434c8f..93f2f5e6 100644 --- a/runtime-scriptcache/pom.xml +++ b/runtime-scriptcache/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/config/ScriptCacheConfiguration.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/config/ScriptCacheConfiguration.java index 18f22b58..45af3c4f 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/config/ScriptCacheConfiguration.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/config/ScriptCacheConfiguration.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.config; import com.inspur.edp.web.jitruntimebuild.scriptcache.domain.manager.FormProjectCacheManager; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/constants/ScriptCacheDBTableConstant.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/constants/ScriptCacheDBTableConstant.java index 9b34833a..bdad43a9 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/constants/ScriptCacheDBTableConstant.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/constants/ScriptCacheDBTableConstant.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.constants; /** diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/entity/FormProjectCacheEntity.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/entity/FormProjectCacheEntity.java index 63022b90..98fc11f0 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/entity/FormProjectCacheEntity.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/entity/FormProjectCacheEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.domain.entity; import com.inspur.edp.web.common.converter.WebEntityConverter; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/entity/FormScriptCacheContentEntity.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/entity/FormScriptCacheContentEntity.java index a7b11c7b..d002316a 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/entity/FormScriptCacheContentEntity.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/entity/FormScriptCacheContentEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.domain.entity; import com.inspur.edp.web.common.converter.WebEntityConverter; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/entity/FormScriptCacheEntity.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/entity/FormScriptCacheEntity.java index 53d3ca57..d790dac3 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/entity/FormScriptCacheEntity.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/entity/FormScriptCacheEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.domain.entity; import com.inspur.edp.web.common.converter.WebEntityConverter; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/manager/FormProjectCacheManager.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/manager/FormProjectCacheManager.java index 984e5755..d148ebd9 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/manager/FormProjectCacheManager.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/manager/FormProjectCacheManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.domain.manager; import com.inspur.edp.web.jitruntimebuild.scriptcache.api.entity.FormProjectCache; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/manager/FormScriptCacheContentManager.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/manager/FormScriptCacheContentManager.java index 8fda1270..2d1665c9 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/manager/FormScriptCacheContentManager.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/manager/FormScriptCacheContentManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.domain.manager; import com.inspur.edp.web.jitruntimebuild.scriptcache.api.entity.FormScriptCacheContent; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/manager/FormScriptCacheManager.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/manager/FormScriptCacheManager.java index d46b2691..35fb5dd8 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/manager/FormScriptCacheManager.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/manager/FormScriptCacheManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.domain.manager; import com.inspur.edp.web.common.io.FileUtility; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/repository/FormProjectCacheRepository.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/repository/FormProjectCacheRepository.java index baf8c286..75ba34c1 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/repository/FormProjectCacheRepository.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/repository/FormProjectCacheRepository.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.domain.repository; import com.inspur.edp.web.jitruntimebuild.scriptcache.domain.entity.FormProjectCacheEntity; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/repository/FormScriptCacheContentRepository.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/repository/FormScriptCacheContentRepository.java index cc8072c6..2dc7f1e8 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/repository/FormScriptCacheContentRepository.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/repository/FormScriptCacheContentRepository.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.domain.repository; import com.inspur.edp.web.jitruntimebuild.scriptcache.domain.entity.FormScriptCacheContentEntity; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/repository/FormScriptCacheRepository.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/repository/FormScriptCacheRepository.java index 26d07c56..b02b2220 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/repository/FormScriptCacheRepository.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/domain/repository/FormScriptCacheRepository.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.domain.repository; import com.inspur.edp.web.jitruntimebuild.scriptcache.domain.entity.FormScriptCacheEntity; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerFileOperation.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerFileOperation.java index ea1ef6a2..04b66b3d 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerFileOperation.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerFileOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.localserver; import com.inspur.edp.web.common.io.FileUtility; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerPathGenerator.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerPathGenerator.java index eb7bed1d..8209a1ce 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerPathGenerator.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerPathGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.localserver; import com.inspur.edp.web.common.io.FileUtility; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerProjectVersion.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerProjectVersion.java index 3b39d3dc..50bf527d 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerProjectVersion.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerProjectVersion.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.localserver; import java.util.ArrayList; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerScriptVersion.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerScriptVersion.java index 0794240c..f46eddba 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerScriptVersion.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerScriptVersion.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.localserver; /** diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerVersionFileContent.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerVersionFileContent.java index 1c9db7e4..4ce36c5a 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerVersionFileContent.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerVersionFileContent.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.localserver; import java.util.ArrayList; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerVersionFileOperation.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerVersionFileOperation.java index e36fbee4..3295edfd 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerVersionFileOperation.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerVersionFileOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.localserver; import com.inspur.edp.web.common.io.FileUtility; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerVersionManager.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerVersionManager.java index 395e503f..2666cbb8 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerVersionManager.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/LocalServerVersionManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.localserver; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/rpc/LocalServerVersionRpcService.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/rpc/LocalServerVersionRpcService.java index da9930fe..5f756f8d 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/rpc/LocalServerVersionRpcService.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/rpc/LocalServerVersionRpcService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.localserver.rpc; import com.inspur.edp.web.jitruntimebuild.scriptcache.api.entity.FormProjectCache; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/rpc/LocalServerVersionRpcServiceImpl.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/rpc/LocalServerVersionRpcServiceImpl.java index e30a6a05..d250c23f 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/rpc/LocalServerVersionRpcServiceImpl.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/localserver/rpc/LocalServerVersionRpcServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.localserver.rpc; import com.inspur.edp.web.jitruntimebuild.scriptcache.api.entity.FormProjectCache; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/manager/CustomizationCacheServiceInstanceManager.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/manager/CustomizationCacheServiceInstanceManager.java index c6884a94..eb668a87 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/manager/CustomizationCacheServiceInstanceManager.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/manager/CustomizationCacheServiceInstanceManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.manager; import com.inspur.edp.lcm.rtcustomization.cache.api.service.ICustomizationCacheService; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/manager/ScriptCacheVersionManager.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/manager/ScriptCacheVersionManager.java index c228df44..12728d38 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/manager/ScriptCacheVersionManager.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/manager/ScriptCacheVersionManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.manager; import com.inspur.edp.web.common.io.FileUtility; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/service/ScriptCacheServiceImpl.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/service/ScriptCacheServiceImpl.java index 0dd72ac1..ab102a45 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/service/ScriptCacheServiceImpl.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/service/ScriptCacheServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.service; import com.inspur.edp.lcm.rtcustomization.cache.api.entity.CustomizationGlobalVersion; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/utility/ScriptCacheContentEncrypt.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/utility/ScriptCacheContentEncrypt.java index d02c1c01..a6efb2db 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/utility/ScriptCacheContentEncrypt.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/utility/ScriptCacheContentEncrypt.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.utility; import com.inspur.edp.web.common.encrypt.EncryptConstant; diff --git a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/webservice/ScriptCacheWebServiceImpl.java b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/webservice/ScriptCacheWebServiceImpl.java index 6987941d..5141c991 100644 --- a/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/webservice/ScriptCacheWebServiceImpl.java +++ b/runtime-scriptcache/src/main/java/com/inspur/edp/web/jitruntimebuild/scriptcache/webservice/ScriptCacheWebServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitruntimebuild.scriptcache.webservice; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/runtime-scriptcache/src/main/resources/log4j2.properties b/runtime-scriptcache/src/main/resources/log4j2.properties index 328db356..16dbeda7 100644 --- a/runtime-scriptcache/src/main/resources/log4j2.properties +++ b/runtime-scriptcache/src/main/resources/log4j2.properties @@ -1,3 +1,19 @@ +# +# Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. +# +# Licensed 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. +# + appender.out.type = Console appender.out.name = out diff --git a/toout.bat b/toout.bat index f620c72a..7a2db5f2 100644 --- a/toout.bat +++ b/toout.bat @@ -1,3 +1,19 @@ +# +# Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. +# +# Licensed 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. +# + @echo off for /f "tokens=*" %%i in ('CALL .\xpath0.1.bat pom.xml "/project/properties/custom.version"') do set version=%%i diff --git a/web-appconfig-api/pom.xml b/web-appconfig-api/pom.xml index 75fc31c7..95e40dad 100644 --- a/web-appconfig-api/pom.xml +++ b/web-appconfig-api/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-appconfig-api/src/main/java/com/inspur/edp/web/appconfig/api/entity/GspAppConfig.java b/web-appconfig-api/src/main/java/com/inspur/edp/web/appconfig/api/entity/GspAppConfig.java index 387f49b8..2ea79daa 100644 --- a/web-appconfig-api/src/main/java/com/inspur/edp/web/appconfig/api/entity/GspAppConfig.java +++ b/web-appconfig-api/src/main/java/com/inspur/edp/web/appconfig/api/entity/GspAppConfig.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.appconfig.api.entity; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/web-appconfig-api/src/main/java/com/inspur/edp/web/appconfig/api/webservice/AppConfigWebService.java b/web-appconfig-api/src/main/java/com/inspur/edp/web/appconfig/api/webservice/AppConfigWebService.java index f3305f63..a154af82 100644 --- a/web-appconfig-api/src/main/java/com/inspur/edp/web/appconfig/api/webservice/AppConfigWebService.java +++ b/web-appconfig-api/src/main/java/com/inspur/edp/web/appconfig/api/webservice/AppConfigWebService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.appconfig.api.webservice; diff --git a/web-appconfig-core/pom.xml b/web-appconfig-core/pom.xml index 07329a26..bea00faf 100644 --- a/web-appconfig-core/pom.xml +++ b/web-appconfig-core/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/appconfig/AppConfigFileManager.java b/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/appconfig/AppConfigFileManager.java index bb65fb47..d6190403 100644 --- a/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/appconfig/AppConfigFileManager.java +++ b/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/appconfig/AppConfigFileManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.appconfig.core.appconfig; import com.inspur.edp.web.appconfig.api.entity.GspAppConfig; diff --git a/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/appconfig/AppConfigFilePathGenerator.java b/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/appconfig/AppConfigFilePathGenerator.java index a7f9a74c..8641730b 100644 --- a/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/appconfig/AppConfigFilePathGenerator.java +++ b/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/appconfig/AppConfigFilePathGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.appconfig.core.appconfig; import com.inspur.edp.web.appconfig.core.constants.GspAppConfigConstants; diff --git a/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/config/AppConfigConfiguration.java b/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/config/AppConfigConfiguration.java index e168f07e..0f939422 100644 --- a/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/config/AppConfigConfiguration.java +++ b/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/config/AppConfigConfiguration.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.appconfig.core.config; import com.inspur.edp.web.appconfig.core.webservice.AppConfigWebServiceImpl; diff --git a/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/constants/GspAppConfigConstants.java b/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/constants/GspAppConfigConstants.java index f8d84109..8eb9bfa9 100644 --- a/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/constants/GspAppConfigConstants.java +++ b/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/constants/GspAppConfigConstants.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.appconfig.core.constants; /** diff --git a/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/service/GspAppConfigService.java b/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/service/GspAppConfigService.java index 495600ea..e8623729 100644 --- a/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/service/GspAppConfigService.java +++ b/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/service/GspAppConfigService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.appconfig.core.service; import com.inspur.edp.lcm.metadata.api.entity.MetadataProject; diff --git a/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/webservice/AppConfigWebServiceImpl.java b/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/webservice/AppConfigWebServiceImpl.java index eb0ed01c..aa249651 100644 --- a/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/webservice/AppConfigWebServiceImpl.java +++ b/web-appconfig-core/src/main/java/com/inspur/edp/web/appconfig/core/webservice/AppConfigWebServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.appconfig.core.webservice; import com.inspur.edp.web.appconfig.api.entity.GspAppConfig; diff --git a/web-approval-format-api/pom.xml b/web-approval-format-api/pom.xml index 8ab32745..fc988d4c 100644 --- a/web-approval-format-api/pom.xml +++ b/web-approval-format-api/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormUpdateRequestBody.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormUpdateRequestBody.java index 3ae3ebe4..c71e3c97 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormUpdateRequestBody.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormUpdateRequestBody.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity; import com.inspur.edp.web.formmetadata.metadata.FormMetadataContent; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormat.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormat.java index 9140da6a..119e2f6d 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormat.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormat.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatCreateRequestBody.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatCreateRequestBody.java index 5268dc7b..7b30bb99 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatCreateRequestBody.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatCreateRequestBody.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatCreateResponseBody.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatCreateResponseBody.java index 1bb1724b..b97ab0bc 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatCreateResponseBody.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatCreateResponseBody.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatDimensionUpdateRequestBody.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatDimensionUpdateRequestBody.java index cc9eb5fd..3b004f81 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatDimensionUpdateRequestBody.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatDimensionUpdateRequestBody.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatEnum.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatEnum.java index aedabe58..aca481eb 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatEnum.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatEnum.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity; /** diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatForestByDimension.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatForestByDimension.java index 3a54226b..68bb2680 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatForestByDimension.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatForestByDimension.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatQueryResponseBody.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatQueryResponseBody.java index 5dfd7e17..c7abd6a9 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatQueryResponseBody.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatQueryResponseBody.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatTreeNode.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatTreeNode.java index d27b3e95..70d3301f 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatTreeNode.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatTreeNode.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatUpdateRequestBody.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatUpdateRequestBody.java index e12516e4..04c49160 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatUpdateRequestBody.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalFormatUpdateRequestBody.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalViewObjectUpdateRequestBody.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalViewObjectUpdateRequestBody.java index 455d61e9..d6490332 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalViewObjectUpdateRequestBody.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApprovalViewObjectUpdateRequestBody.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity; import com.inspur.edp.formserver.viewmodel.GspViewModel; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApproveFormatPreviewParameter.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApproveFormatPreviewParameter.java index d27e9b7c..a0b9f694 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApproveFormatPreviewParameter.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/ApproveFormatPreviewParameter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/HelpMetadataSimpleContent.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/HelpMetadataSimpleContent.java index 7221808a..b06f6da0 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/HelpMetadataSimpleContent.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/HelpMetadataSimpleContent.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/HelpProviderResult.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/HelpProviderResult.java index d6d6464e..6c854642 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/HelpProviderResult.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/HelpProviderResult.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity; import com.inspur.edp.web.help.api.LookupResult; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/ComplexField.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/ComplexField.java index aa4f9650..f502172a 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/ComplexField.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/ComplexField.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/Entity.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/Entity.java index b6f26071..f055b12a 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/Entity.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/Entity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema; import com.inspur.edp.web.approvalformat.api.entity.schema.type.EntityType; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/Field.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/Field.java index 37f61a17..6cfda020 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/Field.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/Field.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema; import com.inspur.edp.web.approvalformat.api.entity.schema.type.FieldType; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/FormSchema.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/FormSchema.java index 4109fb17..29022e5c 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/FormSchema.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/FormSchema.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/SimpleField.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/SimpleField.java index d588ae65..26d1cf0a 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/SimpleField.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/SimpleField.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema; import com.inspur.edp.web.approvalformat.api.entity.schema.editor.FieldEditor; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/CheckBox.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/CheckBox.java index a2d72624..3e2451ea 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/CheckBox.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/CheckBox.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.editor; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/DateBox.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/DateBox.java index ee56d5cd..a781bebf 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/DateBox.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/DateBox.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.editor; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/EnumField.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/EnumField.java index 14d7d81f..e5a8354c 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/EnumField.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/EnumField.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.editor; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/FieldEditor.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/FieldEditor.java index f65e9c08..58e5a695 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/FieldEditor.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/FieldEditor.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.editor; /** diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/LanguageTextBox.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/LanguageTextBox.java index 04cbbac8..52f07451 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/LanguageTextBox.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/LanguageTextBox.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.editor; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/MultiTextBox.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/MultiTextBox.java index 7e9aead4..d534248b 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/MultiTextBox.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/MultiTextBox.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.editor; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/NumericBox.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/NumericBox.java index 3174c878..1c24b222 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/NumericBox.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/NumericBox.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.editor; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/TextBox.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/TextBox.java index 443746c0..95747d19 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/TextBox.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/editor/TextBox.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.editor; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/BooleanType.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/BooleanType.java index b7773745..d33175aa 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/BooleanType.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/BooleanType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.type; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/DateType.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/DateType.java index c51302f4..aece74e5 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/DateType.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/DateType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.type; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/DynamicObjectType.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/DynamicObjectType.java index 539d9613..d4b7dfab 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/DynamicObjectType.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/DynamicObjectType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.type; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/EntityType.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/EntityType.java index 27be278f..6af5f73b 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/EntityType.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/EntityType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.type; import com.inspur.edp.web.approvalformat.api.entity.schema.Entity; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/EnumItem.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/EnumItem.java index bd900b99..d437c537 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/EnumItem.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/EnumItem.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.type; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/EnumType.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/EnumType.java index f2dbe91d..20cd039c 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/EnumType.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/EnumType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.type; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/FieldType.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/FieldType.java index aea532ad..f6bf85c9 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/FieldType.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/FieldType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.type; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/HierarchyType.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/HierarchyType.java index b8756936..760b1cc7 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/HierarchyType.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/HierarchyType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.type; import com.inspur.edp.web.approvalformat.api.entity.schema.Field; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/NumericType.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/NumericType.java index dbf0804f..3a819571 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/NumericType.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/NumericType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.type; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/ObjectType.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/ObjectType.java index 86b8857d..bba70716 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/ObjectType.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/ObjectType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.type; import com.inspur.edp.web.approvalformat.api.entity.schema.Field; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/StringType.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/StringType.java index 2b85c507..da96a3a8 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/StringType.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/StringType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.type; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/TextType.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/TextType.java index 3b1a77ff..46a6fc8c 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/TextType.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/entity/schema/type/TextType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.entity.schema.type; import lombok.Data; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/rpcservice/IApprovalFormatRpcService.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/rpcservice/IApprovalFormatRpcService.java index cfa71e8e..79a8cc13 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/rpcservice/IApprovalFormatRpcService.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/rpcservice/IApprovalFormatRpcService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.rpcservice; import com.inspur.edp.cef.entity.entity.IEntityData; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/ApprovalFormMetadataService.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/ApprovalFormMetadataService.java index e212c099..b2c70548 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/ApprovalFormMetadataService.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/ApprovalFormMetadataService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.service; import com.fasterxml.jackson.databind.JsonNode; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/ApprovalFormatService.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/ApprovalFormatService.java index 937de23f..f07804c5 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/ApprovalFormatService.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/ApprovalFormatService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.service; import com.fasterxml.jackson.databind.JsonNode; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/BusinessEntityService.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/BusinessEntityService.java index e5424408..c32077fb 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/BusinessEntityService.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/BusinessEntityService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.service; import com.inspur.edp.bef.bizentity.GspBusinessEntity; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/DimensionService.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/DimensionService.java index 041b05d3..28df559a 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/DimensionService.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/DimensionService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.service; import com.inspur.edp.bcc.billcategory.entity.dimension.BillCategoryDimension; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/IRuntimeMetadataService.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/IRuntimeMetadataService.java index 24692986..4c89e9fe 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/IRuntimeMetadataService.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/service/IRuntimeMetadataService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.service; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/webservice/ApprovalFormMetadataWebService.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/webservice/ApprovalFormMetadataWebService.java index df691039..f8433e1c 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/webservice/ApprovalFormMetadataWebService.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/webservice/ApprovalFormMetadataWebService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.webservice; import com.fasterxml.jackson.databind.JsonNode; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/webservice/ApprovalFormatWebService.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/webservice/ApprovalFormatWebService.java index 49501767..3a48efa7 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/webservice/ApprovalFormatWebService.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/webservice/ApprovalFormatWebService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.webservice; import com.fasterxml.jackson.databind.JsonNode; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/webservice/BusinessEntityWebService.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/webservice/BusinessEntityWebService.java index 339ded10..ed530cbe 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/webservice/BusinessEntityWebService.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/webservice/BusinessEntityWebService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.webservice; import com.inspur.edp.bef.bizentity.GspBusinessEntity; diff --git a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/webservice/DimensionWebService.java b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/webservice/DimensionWebService.java index 7a825cc0..0b161612 100644 --- a/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/webservice/DimensionWebService.java +++ b/web-approval-format-api/src/main/java/com/inspur/edp/web/approvalformat/api/webservice/DimensionWebService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.api.webservice; import com.inspur.edp.bcc.billcategory.entity.dimension.BillCategoryDimension; diff --git a/web-approval-format-core/pom.xml b/web-approval-format-core/pom.xml index 7d2e1a73..699389ec 100644 --- a/web-approval-format-core/pom.xml +++ b/web-approval-format-core/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/config/ApprovalFormatConfiguration.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/config/ApprovalFormatConfiguration.java index 31cb7a5e..0e6efc2d 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/config/ApprovalFormatConfiguration.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/config/ApprovalFormatConfiguration.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.config; import com.inspur.edp.web.approvalformat.api.rpcservice.IApprovalFormatRpcService; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/domain/converter/ApprovalFormatConverter.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/domain/converter/ApprovalFormatConverter.java index e1dea3a7..b23a7b7e 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/domain/converter/ApprovalFormatConverter.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/domain/converter/ApprovalFormatConverter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.domain.converter; import com.inspur.edp.web.approvalformat.api.entity.ApprovalFormat; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/domain/entity/ApprovalFormatDO.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/domain/entity/ApprovalFormatDO.java index 08ef12ed..906c94b3 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/domain/entity/ApprovalFormatDO.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/domain/entity/ApprovalFormatDO.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.domain.entity; import lombok.Data; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/domain/manager/ApprovalFormatManager.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/domain/manager/ApprovalFormatManager.java index 74e64b62..5e2b6c8a 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/domain/manager/ApprovalFormatManager.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/domain/manager/ApprovalFormatManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.domain.manager; import com.inspur.edp.web.approvalformat.api.entity.ApprovalFormat; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/domain/repository/ApprovalFormatRepository.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/domain/repository/ApprovalFormatRepository.java index 34b51bce..5fc0f923 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/domain/repository/ApprovalFormatRepository.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/domain/repository/ApprovalFormatRepository.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.domain.repository; import com.inspur.edp.web.approvalformat.core.domain.entity.ApprovalFormatDO; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/rpcservice/ApprovalFormatRpcServiceImpl.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/rpcservice/ApprovalFormatRpcServiceImpl.java index 39232368..49d1e0ae 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/rpcservice/ApprovalFormatRpcServiceImpl.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/rpcservice/ApprovalFormatRpcServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.rpcservice; import com.inspur.edp.bef.api.lcp.ILcpFactory; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/ApprovalFormMetadataServiceImpl.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/ApprovalFormMetadataServiceImpl.java index 14831bec..5b5a10df 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/ApprovalFormMetadataServiceImpl.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/ApprovalFormMetadataServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.service; import com.fasterxml.jackson.core.JsonProcessingException; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/ApprovalFormatServiceImpl.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/ApprovalFormatServiceImpl.java index d005d5be..aaa5ab97 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/ApprovalFormatServiceImpl.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/ApprovalFormatServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.service; import com.fasterxml.jackson.core.JsonProcessingException; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/BusinessEntityServiceImpl.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/BusinessEntityServiceImpl.java index 48865394..ceb064e6 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/BusinessEntityServiceImpl.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/BusinessEntityServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.service; import com.inspur.edp.bef.bizentity.GspBusinessEntity; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/DimensionServiceImpl.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/DimensionServiceImpl.java index d72ccc42..cb2864f5 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/DimensionServiceImpl.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/DimensionServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.service; import com.inspur.edp.bcc.billcategory.api.BillCategoryService; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/RuntimeMetadataServiceImpl.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/RuntimeMetadataServiceImpl.java index 012da836..8d17f4a8 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/RuntimeMetadataServiceImpl.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/service/RuntimeMetadataServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.service; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormSchemaUtil.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormSchemaUtil.java index b2f08698..1decc62f 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormSchemaUtil.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormSchemaUtil.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.util; import com.inspur.edp.cef.designtime.api.IGspCommonField; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormUtil.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormUtil.java index dc826c4c..c0dda73b 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormUtil.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormUtil.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.util; import com.fasterxml.jackson.core.JsonProcessingException; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormatPermission.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormatPermission.java index 48892fb8..11d3170b 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormatPermission.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormatPermission.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.util; import io.iec.edp.caf.commons.utils.SpringBeanUtils; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormatTreeUtil.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormatTreeUtil.java index 47cdc557..93f1dacb 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormatTreeUtil.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormatTreeUtil.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.util; import com.inspur.edp.lcm.metadata.api.entity.MetadataHeader; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormatUtil.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormatUtil.java index 6f282689..2e879741 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormatUtil.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApprovalFormatUtil.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.util; import com.fasterxml.jackson.databind.node.ObjectNode; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApproveFormatPreviewUtil.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApproveFormatPreviewUtil.java index b42bf90f..370584a1 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApproveFormatPreviewUtil.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/ApproveFormatPreviewUtil.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.util; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/FieldUtil.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/FieldUtil.java index 1ed43494..d69e70bd 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/FieldUtil.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/FieldUtil.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.util; import com.inspur.edp.cef.designtime.api.IGspCommonField; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/HelpProviderUtil.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/HelpProviderUtil.java index 6ee1956b..a6bb87cb 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/HelpProviderUtil.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/HelpProviderUtil.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.util; import com.inspur.edp.web.approvalformat.api.entity.HelpMetadataSimpleContent; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/TypeBuildingContext.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/TypeBuildingContext.java index dcbe37f1..0565db31 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/TypeBuildingContext.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/util/TypeBuildingContext.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.util; import com.inspur.edp.cef.designtime.api.IGspCommonField; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/webservice/ApprovalFormMetadataWebServiceImpl.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/webservice/ApprovalFormMetadataWebServiceImpl.java index a263589f..b8c5a4e4 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/webservice/ApprovalFormMetadataWebServiceImpl.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/webservice/ApprovalFormMetadataWebServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.webservice; import com.fasterxml.jackson.databind.JsonNode; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/webservice/ApprovalFormatWebServiceImpl.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/webservice/ApprovalFormatWebServiceImpl.java index 65e3b062..e3eb40e9 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/webservice/ApprovalFormatWebServiceImpl.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/webservice/ApprovalFormatWebServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.webservice; import com.fasterxml.jackson.databind.JsonNode; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/webservice/BusinessEntityWebServiceImpl.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/webservice/BusinessEntityWebServiceImpl.java index 27d2cd8d..a6f8177d 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/webservice/BusinessEntityWebServiceImpl.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/webservice/BusinessEntityWebServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.webservice; import com.inspur.edp.bef.bizentity.GspBusinessEntity; diff --git a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/webservice/DimensionWebServiceImpl.java b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/webservice/DimensionWebServiceImpl.java index afcb6e4c..9a6856de 100644 --- a/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/webservice/DimensionWebServiceImpl.java +++ b/web-approval-format-core/src/main/java/com/inspur/edp/web/approvalformat/core/webservice/DimensionWebServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.approvalformat.core.webservice; import com.inspur.edp.bcc.billcategory.entity.dimension.BillCategoryDimension; diff --git a/web-approval-format-rpc/pom.xml b/web-approval-format-rpc/pom.xml index 3faf14a4..a2a35c4f 100644 --- a/web-approval-format-rpc/pom.xml +++ b/web-approval-format-rpc/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-common/pom.xml b/web-common/pom.xml index bf41dfa6..6651ad17 100644 --- a/web-common/pom.xml +++ b/web-common/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-common/src/main/java/com/inspur/edp/web/common/GSPException.java b/web-common/src/main/java/com/inspur/edp/web/common/GSPException.java index d5eee595..f30e1798 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/GSPException.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/GSPException.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common; import io.iec.edp.caf.commons.exception.CAFRuntimeException; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/GspProjectUtil.java b/web-common/src/main/java/com/inspur/edp/web/common/GspProjectUtil.java index 02077ad3..68bb14e6 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/GspProjectUtil.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/GspProjectUtil.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common; import com.inspur.edp.lcm.metadata.api.entity.GspProject; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/JITEngineConstants.java b/web-common/src/main/java/com/inspur/edp/web/common/JITEngineConstants.java index 0eebb57a..ab097188 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/JITEngineConstants.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/JITEngineConstants.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common; /** diff --git a/web-common/src/main/java/com/inspur/edp/web/common/constant/FrontendProjectConstant.java b/web-common/src/main/java/com/inspur/edp/web/common/constant/FrontendProjectConstant.java index f4ed6894..dadbaf78 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/constant/FrontendProjectConstant.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/constant/FrontendProjectConstant.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.constant; /** diff --git a/web-common/src/main/java/com/inspur/edp/web/common/converter/WebEntityConverter.java b/web-common/src/main/java/com/inspur/edp/web/common/converter/WebEntityConverter.java index 643ba7fc..6adff902 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/converter/WebEntityConverter.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/converter/WebEntityConverter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.converter; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/core/EnumValueParsable.java b/web-common/src/main/java/com/inspur/edp/web/common/core/EnumValueParsable.java index 3149dd97..82f25722 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/core/EnumValueParsable.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/core/EnumValueParsable.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.core; import java.text.MessageFormat; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/encrypt/EncryptConstant.java b/web-common/src/main/java/com/inspur/edp/web/common/encrypt/EncryptConstant.java index 06708e29..725d17fe 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/encrypt/EncryptConstant.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/encrypt/EncryptConstant.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.encrypt; /** diff --git a/web-common/src/main/java/com/inspur/edp/web/common/encrypt/EncryptUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/encrypt/EncryptUtility.java index 80e4bb1b..3a2a12a4 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/encrypt/EncryptUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/encrypt/EncryptUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.encrypt; import com.inspur.edp.web.common.logger.WebLogger; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/entity/NodeJsCommandEnum.java b/web-common/src/main/java/com/inspur/edp/web/common/entity/NodeJsCommandEnum.java index f02244dd..6651f00f 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/entity/NodeJsCommandEnum.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/entity/NodeJsCommandEnum.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.entity; /** diff --git a/web-common/src/main/java/com/inspur/edp/web/common/entity/ResultCode.java b/web-common/src/main/java/com/inspur/edp/web/common/entity/ResultCode.java index ac3b9f99..84f2809e 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/entity/ResultCode.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/entity/ResultCode.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.entity; /** diff --git a/web-common/src/main/java/com/inspur/edp/web/common/entity/ResultMessage.java b/web-common/src/main/java/com/inspur/edp/web/common/entity/ResultMessage.java index 5b1b9e79..9268e60c 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/entity/ResultMessage.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/entity/ResultMessage.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.entity; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/entity/ResultMessageData.java b/web-common/src/main/java/com/inspur/edp/web/common/entity/ResultMessageData.java index 3304192a..b87ee0d5 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/entity/ResultMessageData.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/entity/ResultMessageData.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.entity; import java.io.Serializable; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/entity/TerminalType.java b/web-common/src/main/java/com/inspur/edp/web/common/entity/TerminalType.java index fef0af57..279d08d1 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/entity/TerminalType.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/entity/TerminalType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.entity; import com.inspur.edp.web.common.constant.FrontendProjectConstant; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/environment/EnvironmentException.java b/web-common/src/main/java/com/inspur/edp/web/common/environment/EnvironmentException.java index d7d85e67..438ab709 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/environment/EnvironmentException.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/environment/EnvironmentException.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.environment; import io.iec.edp.caf.commons.exception.ExceptionLevel; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/environment/ExecuteEnvironment.java b/web-common/src/main/java/com/inspur/edp/web/common/environment/ExecuteEnvironment.java index bebfcb95..c8cced94 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/environment/ExecuteEnvironment.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/environment/ExecuteEnvironment.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.environment; /** diff --git a/web-common/src/main/java/com/inspur/edp/web/common/environment/checker/ExecuteEnvironmentCheckResult.java b/web-common/src/main/java/com/inspur/edp/web/common/environment/checker/ExecuteEnvironmentCheckResult.java index fca9dbd1..fae4ed46 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/environment/checker/ExecuteEnvironmentCheckResult.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/environment/checker/ExecuteEnvironmentCheckResult.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.environment.checker; /** diff --git a/web-common/src/main/java/com/inspur/edp/web/common/environment/checker/ExecuteEnvironmentChecker.java b/web-common/src/main/java/com/inspur/edp/web/common/environment/checker/ExecuteEnvironmentChecker.java index 5fe3211c..385aba19 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/environment/checker/ExecuteEnvironmentChecker.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/environment/checker/ExecuteEnvironmentChecker.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.environment.checker; import com.inspur.edp.web.common.environment.EnvironmentException; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/io/FileUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/io/FileUtility.java index 7968a0ba..3aaed1f8 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/io/FileUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/io/FileUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.io; import com.inspur.edp.web.common.logger.WebLogger; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/io/NodeJsCommandResult.java b/web-common/src/main/java/com/inspur/edp/web/common/io/NodeJsCommandResult.java index 80b3b364..42baa764 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/io/NodeJsCommandResult.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/io/NodeJsCommandResult.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.io; import lombok.Data; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/io/NodejsFunctionUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/io/NodejsFunctionUtility.java index e40f7efc..2df73c98 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/io/NodejsFunctionUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/io/NodejsFunctionUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.io; import com.inspur.edp.web.common.JITEngineConstants; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/logger/WebLogger.java b/web-common/src/main/java/com/inspur/edp/web/common/logger/WebLogger.java index a082c1ee..569833a4 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/logger/WebLogger.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/logger/WebLogger.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.logger; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataGetterParameter.java b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataGetterParameter.java index c53a07d3..fe189ed5 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataGetterParameter.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataGetterParameter.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.common.metadata; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataTypeEnum.java b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataTypeEnum.java index f9cd9e0b..77f1b3bd 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataTypeEnum.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataTypeEnum.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.common.metadata; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java index d98f9bf0..f2ce5692 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/metadata/MetadataUtility.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.common.metadata; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/metadata/WebMetadataUri.java b/web-common/src/main/java/com/inspur/edp/web/common/metadata/WebMetadataUri.java index 2b5cea73..39948345 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/metadata/WebMetadataUri.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/metadata/WebMetadataUri.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.common.metadata; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/serialize/MyPropertyNamingStrategy.java b/web-common/src/main/java/com/inspur/edp/web/common/serialize/MyPropertyNamingStrategy.java index 7e44459b..37b81df2 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/serialize/MyPropertyNamingStrategy.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/serialize/MyPropertyNamingStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.serialize; import com.fasterxml.jackson.databind.cfg.MapperConfig; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/serialize/SerializeUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/serialize/SerializeUtility.java index ff616e18..38099df6 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/serialize/SerializeUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/serialize/SerializeUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.serialize; import com.fasterxml.jackson.core.JsonGenerator; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/utility/Base64Utility.java b/web-common/src/main/java/com/inspur/edp/web/common/utility/Base64Utility.java index ed261fb6..3a5adc0b 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/utility/Base64Utility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/utility/Base64Utility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.utility; import java.io.UnsupportedEncodingException; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/utility/CommandExecuteInterceptor.java b/web-common/src/main/java/com/inspur/edp/web/common/utility/CommandExecuteInterceptor.java index 028c4ca8..2c1e3ffe 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/utility/CommandExecuteInterceptor.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/utility/CommandExecuteInterceptor.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.utility; import com.inspur.edp.web.common.logger.WebLogger; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/utility/CommandExecuteResult.java b/web-common/src/main/java/com/inspur/edp/web/common/utility/CommandExecuteResult.java index a279b03c..e85e53c1 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/utility/CommandExecuteResult.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/utility/CommandExecuteResult.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.utility; /** diff --git a/web-common/src/main/java/com/inspur/edp/web/common/utility/CommandLineUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/utility/CommandLineUtility.java index 2e607faa..5b92932d 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/utility/CommandLineUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/utility/CommandLineUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.utility; import com.inspur.edp.web.common.logger.WebLogger; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/utility/CommonUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/utility/CommonUtility.java index 0f80a68b..681ec703 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/utility/CommonUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/utility/CommonUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.utility; import java.lang.management.ManagementFactory; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/utility/EqualsUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/utility/EqualsUtility.java index c91940df..4753a5ab 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/utility/EqualsUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/utility/EqualsUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.utility; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/utility/ListUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/utility/ListUtility.java index 6c30bf12..17366d21 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/utility/ListUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/utility/ListUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.utility; import java.util.List; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/utility/LoggerLevelEnum.java b/web-common/src/main/java/com/inspur/edp/web/common/utility/LoggerLevelEnum.java index 1ad135b2..00671a4b 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/utility/LoggerLevelEnum.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/utility/LoggerLevelEnum.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.utility; /** diff --git a/web-common/src/main/java/com/inspur/edp/web/common/utility/LoggerUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/utility/LoggerUtility.java index 8895e0b3..0a241048 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/utility/LoggerUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/utility/LoggerUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.utility; import com.inspur.edp.web.common.logger.WebLogger; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/utility/OperatingSystemUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/utility/OperatingSystemUtility.java index b60040de..29e17a2b 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/utility/OperatingSystemUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/utility/OperatingSystemUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.utility; import org.apache.commons.lang3.SystemUtils; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/utility/RandomUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/utility/RandomUtility.java index c77ec6f7..f8c623e1 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/utility/RandomUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/utility/RandomUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.utility; import java.util.UUID; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/utility/StringUtility.java b/web-common/src/main/java/com/inspur/edp/web/common/utility/StringUtility.java index 3f81c55b..85343bcb 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/utility/StringUtility.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/utility/StringUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.utility; import org.apache.commons.lang3.StringUtils; diff --git a/web-common/src/main/java/com/inspur/edp/web/common/utility/WebThreadUncaughtExceptionHandler.java b/web-common/src/main/java/com/inspur/edp/web/common/utility/WebThreadUncaughtExceptionHandler.java index 18ade45b..4802da5f 100644 --- a/web-common/src/main/java/com/inspur/edp/web/common/utility/WebThreadUncaughtExceptionHandler.java +++ b/web-common/src/main/java/com/inspur/edp/web/common/utility/WebThreadUncaughtExceptionHandler.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.common.utility; import com.inspur.edp.web.common.logger.WebLogger; diff --git a/web-designschema-api/pom.xml b/web-designschema-api/pom.xml index a330b6d5..07158120 100644 --- a/web-designschema-api/pom.xml +++ b/web-designschema-api/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-designschema-api/src/main/java/com/inspur/edp/web/designschema/api/entity/DesignSchemaCreateEntity.java b/web-designschema-api/src/main/java/com/inspur/edp/web/designschema/api/entity/DesignSchemaCreateEntity.java index cf97b21d..1c753bbd 100644 --- a/web-designschema-api/src/main/java/com/inspur/edp/web/designschema/api/entity/DesignSchemaCreateEntity.java +++ b/web-designschema-api/src/main/java/com/inspur/edp/web/designschema/api/entity/DesignSchemaCreateEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.api.entity; /** diff --git a/web-designschema-api/src/main/java/com/inspur/edp/web/designschema/api/webservice/DesignSchemaWebService.java b/web-designschema-api/src/main/java/com/inspur/edp/web/designschema/api/webservice/DesignSchemaWebService.java index 35ff9117..88dfc723 100644 --- a/web-designschema-api/src/main/java/com/inspur/edp/web/designschema/api/webservice/DesignSchemaWebService.java +++ b/web-designschema-api/src/main/java/com/inspur/edp/web/designschema/api/webservice/DesignSchemaWebService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.api.webservice; import com.alibaba.fastjson.JSONObject; diff --git a/web-designschema/pom.xml b/web-designschema/pom.xml index 32ccdfb1..66fb792a 100644 --- a/web-designschema/pom.xml +++ b/web-designschema/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/config/DesignSchemaConfiguration.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/config/DesignSchemaConfiguration.java index dc7d934b..381fffbf 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/config/DesignSchemaConfiguration.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/config/DesignSchemaConfiguration.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.config; import com.inspur.edp.web.designschema.webservice.DesignSchemaWebServiceImpl; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/ComplexField.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/ComplexField.java index df53e1a6..518b082a 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/ComplexField.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/ComplexField.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements; /** diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/DynamicField.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/DynamicField.java index 846d31b4..ae4c6099 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/DynamicField.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/DynamicField.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements; /** diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/Entity.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/Entity.java index edb0925c..b5c23e87 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/Entity.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/Entity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements; import com.inspur.edp.web.designschema.elements.type.EntityType; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/Field.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/Field.java index 899efdbd..420f104d 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/Field.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/Field.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements; import com.inspur.edp.web.designschema.elements.type.FieldType; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/Schema.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/Schema.java index 49bc10fe..85f8395c 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/Schema.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/Schema.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/SimpleField.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/SimpleField.java index 7f3eb45d..b1d6be1c 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/SimpleField.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/SimpleField.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements; import com.inspur.edp.web.designschema.elements.editor.DefaultEditor; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/Variable.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/Variable.java index dfaa1b4e..6177e107 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/Variable.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/Variable.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements; /** diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/CheckBox.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/CheckBox.java index ab2c6a2c..830e6efd 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/CheckBox.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/CheckBox.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.editor; /** diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/DataSource.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/DataSource.java index e362f798..c323bd11 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/DataSource.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/DataSource.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.editor; /** diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/DateBox.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/DateBox.java index 214042a2..42647391 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/DateBox.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/DateBox.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.editor; /** diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/DefaultEditor.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/DefaultEditor.java index 0d9c9037..78419aca 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/DefaultEditor.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/DefaultEditor.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.editor; /** diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/EnumField.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/EnumField.java index e61e3ac4..a6086cba 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/EnumField.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/EnumField.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.editor; /** diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/FieldEditor.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/FieldEditor.java index 93c2fd5f..a98d81de 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/FieldEditor.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/FieldEditor.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.editor; /** diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/LanguageTextBox.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/LanguageTextBox.java index 1b470d5d..aa3eea43 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/LanguageTextBox.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/LanguageTextBox.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.editor; public class LanguageTextBox extends FieldEditor { diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/LookupEdit.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/LookupEdit.java index cd49e56e..aa53dd21 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/LookupEdit.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/LookupEdit.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.editor; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/MultiTextBox.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/MultiTextBox.java index 406c8226..378ed7a2 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/MultiTextBox.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/MultiTextBox.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.editor; public class MultiTextBox extends FieldEditor { diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/NumericBox.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/NumericBox.java index 8d5b1b95..107f542b 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/NumericBox.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/NumericBox.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.editor; public class NumericBox extends FieldEditor { diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/RadioGroup.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/RadioGroup.java index 38eaab59..d24a0c44 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/RadioGroup.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/RadioGroup.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.editor; public class RadioGroup extends FieldEditor { diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/SwitchField.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/SwitchField.java index d6ebb8b0..4d45c139 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/SwitchField.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/SwitchField.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.editor; public class SwitchField extends FieldEditor { diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/TextBox.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/TextBox.java index 1cdc6e34..aa5c01c7 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/TextBox.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/editor/TextBox.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.editor; public class TextBox extends FieldEditor { diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/BigNumericType.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/BigNumericType.java index 7680cc46..76c32f7b 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/BigNumericType.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/BigNumericType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.type; /** diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/BooleanType.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/BooleanType.java index 21a7ddbf..2dfaf606 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/BooleanType.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/BooleanType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.type; /** diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/DateTimeType.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/DateTimeType.java index 0b421102..dc89b9b8 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/DateTimeType.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/DateTimeType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.type; /** diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/DateType.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/DateType.java index c7abe660..fd188396 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/DateType.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/DateType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.type; /** diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/DynamicObjectType.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/DynamicObjectType.java index 3137b977..529f446e 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/DynamicObjectType.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/DynamicObjectType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.type; /** diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/EntityType.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/EntityType.java index 28ba294a..9e47f932 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/EntityType.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/EntityType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.type; import com.inspur.edp.web.designschema.elements.Entity; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/EnumItem.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/EnumItem.java index c34ff69f..3a934830 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/EnumItem.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/EnumItem.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.type; /** diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/EnumType.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/EnumType.java index 346f85c7..cef1e7e4 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/EnumType.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/EnumType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.type; import java.util.ArrayList; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/FieldType.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/FieldType.java index ff817053..d805dba2 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/FieldType.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/FieldType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.type; /** diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/HierarchyType.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/HierarchyType.java index c19889fe..260442d6 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/HierarchyType.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/HierarchyType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.type; public class HierarchyType extends ObjectType { diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/NumericType.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/NumericType.java index 2473c54e..4b525bf5 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/NumericType.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/NumericType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.type; public class NumericType extends FieldType { diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/ObjectType.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/ObjectType.java index e18eec92..5edd7a3d 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/ObjectType.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/ObjectType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.type; import com.inspur.edp.web.designschema.elements.Field; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/StringType.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/StringType.java index bf07cb51..e906f0a4 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/StringType.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/StringType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.type; public class StringType extends FieldType { diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/TextType.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/TextType.java index 3480e714..392ebebe 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/TextType.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/elements/type/TextType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.elements.type; public class TextType extends FieldType { diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/EntityBuilder.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/EntityBuilder.java index 01fcc869..7ef61a64 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/EntityBuilder.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/EntityBuilder.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.generator; import com.inspur.edp.das.commonmodel.IGspCommonObject; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/FieldBuilder.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/FieldBuilder.java index b0478a33..5cf30dd0 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/FieldBuilder.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/FieldBuilder.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.designschema.generator; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/FieldTypeBuilder.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/FieldTypeBuilder.java index 75ac331d..01774fc7 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/FieldTypeBuilder.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/FieldTypeBuilder.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.designschema.generator; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/SchemaBuilder.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/SchemaBuilder.java index 7387164c..fc9b9bc7 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/SchemaBuilder.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/SchemaBuilder.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.designschema.generator; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/TypeBuildingContext.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/TypeBuildingContext.java index f6822fb7..9f934561 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/TypeBuildingContext.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/TypeBuildingContext.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.generator; import com.inspur.edp.cef.designtime.api.IGspCommonField; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/UdtExtBuildingContext.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/UdtExtBuildingContext.java index a2c36fa1..13d95aa8 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/UdtExtBuildingContext.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/UdtExtBuildingContext.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.generator; import com.inspur.edp.web.designschema.udtextensiondef.FormUdtExtension; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/UdtFieldTreeNode.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/UdtFieldTreeNode.java index c5540991..b0bfc925 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/UdtFieldTreeNode.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/UdtFieldTreeNode.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.generator; import com.inspur.edp.web.designschema.elements.Field; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/VariableBuilder.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/VariableBuilder.java index 4a39dff0..b266c0d1 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/VariableBuilder.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/VariableBuilder.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.generator; import com.inspur.edp.cef.designtime.api.variable.CommonVariableEntity; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/VariableTypeBuilder.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/VariableTypeBuilder.java index 74a996c0..bf687906 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/VariableTypeBuilder.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/generator/VariableTypeBuilder.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.generator; import com.inspur.edp.cef.designtime.api.IGspCommonField; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/BaseDesignSchemaChangeHandler.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/BaseDesignSchemaChangeHandler.java index 073183d3..4e01f9b3 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/BaseDesignSchemaChangeHandler.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/BaseDesignSchemaChangeHandler.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.synchronization; import com.fasterxml.jackson.core.type.TypeReference; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/DesignSchemaChangeListener.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/DesignSchemaChangeListener.java index 315e668c..34d7b394 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/DesignSchemaChangeListener.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/DesignSchemaChangeListener.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.synchronization; import com.inspur.edp.lcm.metadata.spi.event.MetadataEventArgs; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/FormMetadataUpdate.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/FormMetadataUpdate.java index a7259652..7cef47cb 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/FormMetadataUpdate.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/FormMetadataUpdate.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.designschema.synchronization; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/LookupConfig.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/LookupConfig.java index 2f82e2ae..eb9c2fbc 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/LookupConfig.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/LookupConfig.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.synchronization; public class LookupConfig { diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/NocodeDesignSchemaChangeListener.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/NocodeDesignSchemaChangeListener.java index 959b1a79..aa40d47d 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/NocodeDesignSchemaChangeListener.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/NocodeDesignSchemaChangeListener.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.synchronization; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/Synchronizer.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/Synchronizer.java index c877599a..83f99806 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/Synchronizer.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/synchronization/Synchronizer.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.synchronization; import com.alibaba.fastjson.JSONArray; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/udtextensiondef/FormUdtExtension.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/udtextensiondef/FormUdtExtension.java index 1fa0c7fc..3966b933 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/udtextensiondef/FormUdtExtension.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/udtextensiondef/FormUdtExtension.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.udtextensiondef; import com.fasterxml.jackson.annotation.JsonInclude; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/udtextensiondef/FormUdtExtensionDeserializer.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/udtextensiondef/FormUdtExtensionDeserializer.java index e8b1daae..eff29cef 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/udtextensiondef/FormUdtExtensionDeserializer.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/udtextensiondef/FormUdtExtensionDeserializer.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.udtextensiondef; import com.fasterxml.jackson.core.JsonParser; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/udtextensiondef/FormUdtExtensionSerializer.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/udtextensiondef/FormUdtExtensionSerializer.java index cbf8c32f..81c07edd 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/udtextensiondef/FormUdtExtensionSerializer.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/udtextensiondef/FormUdtExtensionSerializer.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.udtextensiondef; import com.fasterxml.jackson.core.JsonGenerator; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/utils/StringUtils.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/utils/StringUtils.java index 46fb03bc..50cf1a13 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/utils/StringUtils.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/utils/StringUtils.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.utils; import com.fasterxml.jackson.databind.node.TextNode; diff --git a/web-designschema/src/main/java/com/inspur/edp/web/designschema/webservice/DesignSchemaWebServiceImpl.java b/web-designschema/src/main/java/com/inspur/edp/web/designschema/webservice/DesignSchemaWebServiceImpl.java index dbec1151..c98a13d4 100644 --- a/web-designschema/src/main/java/com/inspur/edp/web/designschema/webservice/DesignSchemaWebServiceImpl.java +++ b/web-designschema/src/main/java/com/inspur/edp/web/designschema/webservice/DesignSchemaWebServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.designschema.webservice; import com.alibaba.fastjson.JSONObject; diff --git a/web-form-jitengine/pom.xml b/web-form-jitengine/pom.xml index 2b621ddd..5a76ea73 100644 --- a/web-form-jitengine/pom.xml +++ b/web-form-jitengine/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/JITEngineManager.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/JITEngineManager.java index d902081c..ad94aecd 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/JITEngineManager.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/JITEngineManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine; import com.inspur.edp.cdp.web.component.metadata.define.WebComponentMetadata; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/NpmInstallBeforeGenerate.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/NpmInstallBeforeGenerate.java index 449dd326..c19798a9 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/NpmInstallBeforeGenerate.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/NpmInstallBeforeGenerate.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/ProjectCompileContext.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/ProjectCompileContext.java index 35d0aa9b..91b31b42 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/ProjectCompileContext.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/ProjectCompileContext.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine; import com.inspur.edp.web.common.JITEngineConstants; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/babelgrnerate/GenerateForBabel.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/babelgrnerate/GenerateForBabel.java index cae6f07b..9e96a5bd 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/babelgrnerate/GenerateForBabel.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/babelgrnerate/GenerateForBabel.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.babelgrnerate; import com.inspur.edp.lcm.metadata.api.entity.GspProject; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/constant/JitConstant.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/constant/JitConstant.java index b3534542..f6db408f 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/constant/JitConstant.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/constant/JitConstant.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.constant; /** diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/dynamicform/DynamicFormMetaFileNameGenerator.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/dynamicform/DynamicFormMetaFileNameGenerator.java index c5a306ac..c188e91b 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/dynamicform/DynamicFormMetaFileNameGenerator.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/dynamicform/DynamicFormMetaFileNameGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.dynamicform; /** diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/dynamicform/DynamicFormModuleOperation.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/dynamicform/DynamicFormModuleOperation.java index 7387295f..7404a17f 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/dynamicform/DynamicFormModuleOperation.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/dynamicform/DynamicFormModuleOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.dynamicform; import com.inspur.edp.web.common.io.FileUtility; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/DesignExpressionValue.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/DesignExpressionValue.java index 30df0d36..7b16ad68 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/DesignExpressionValue.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/DesignExpressionValue.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions; /** diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionFormFieldExpression.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionFormFieldExpression.java index 2f9128ef..a337068d 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionFormFieldExpression.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionFormFieldExpression.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionFormFieldJsonEntity.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionFormFieldJsonEntity.java index f2f6706b..b63d91ab 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionFormFieldJsonEntity.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionFormFieldJsonEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionFormGenerator.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionFormGenerator.java index 6a7ccbab..3e089fdd 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionFormGenerator.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionFormGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions; import com.inspur.edp.web.common.serialize.SerializeUtility; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionFormJsonEntity.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionFormJsonEntity.java index 09c53d62..049f6aec 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionFormJsonEntity.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionFormJsonEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionManifest.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionManifest.java index 436fefdf..42e3ded3 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionManifest.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionManifest.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions; import java.util.ArrayList; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionManifestJsonEntity.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionManifestJsonEntity.java index 2ebb3b2c..6d17ecea 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionManifestJsonEntity.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionManifestJsonEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionManifestJsonItemEntity.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionManifestJsonItemEntity.java index c680998d..3351d613 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionManifestJsonItemEntity.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionManifestJsonItemEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionManifestManager.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionManifestManager.java index 8ea27cf9..83cff0ce 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionManifestManager.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ExpressionManifestManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions; import com.inspur.edp.web.common.io.FileUtility; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/FieldInfo.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/FieldInfo.java index 0b2fd0ab..940f2ac1 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/FieldInfo.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/FieldInfo.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions; /** diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleExpressionStatement.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleExpressionStatement.java index 157d12bc..241aadbd 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleExpressionStatement.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleExpressionStatement.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleFormExpressionFieldItem.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleFormExpressionFieldItem.java index f5498c5d..e867896d 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleFormExpressionFieldItem.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleFormExpressionFieldItem.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleFormExpressionItem.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleFormExpressionItem.java index 8aaa248a..69e9d4fa 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleFormExpressionItem.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleFormExpressionItem.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleFormExpressions.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleFormExpressions.java index 1303bc13..fdc10b57 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleFormExpressions.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleFormExpressions.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions; import java.util.ArrayList; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleSchemaEntities.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleSchemaEntities.java index b68c3866..def78429 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleSchemaEntities.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleSchemaEntities.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions; /** diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleSchemaEntityType.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleSchemaEntityType.java index bae430be..f90806de 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleSchemaEntityType.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/ModuleSchemaEntityType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions; import java.util.HashMap; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/parser/DefaultFunctionExpressionParser.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/parser/DefaultFunctionExpressionParser.java index a3ac477c..506bce11 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/parser/DefaultFunctionExpressionParser.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/parser/DefaultFunctionExpressionParser.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions.parser; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/parser/EntityExpressionParser.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/parser/EntityExpressionParser.java index fbbef602..f1b78538 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/parser/EntityExpressionParser.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/parser/EntityExpressionParser.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions.parser; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/parser/ExpressionParserManager.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/parser/ExpressionParserManager.java index 26cc1bf4..48f8eeba 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/parser/ExpressionParserManager.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/parser/ExpressionParserManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions.parser; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/parser/FieldsExpressionParser.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/parser/FieldsExpressionParser.java index f8176147..cfbbb979 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/parser/FieldsExpressionParser.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/parser/FieldsExpressionParser.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions.parser; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/utility/ExpressionUtility.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/utility/ExpressionUtility.java index 7fafbe58..fd437161 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/utility/ExpressionUtility.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/utility/ExpressionUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions.utility; import com.fasterxml.jackson.core.type.TypeReference; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/utility/FieldByIDAndVMIDResult.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/utility/FieldByIDAndVMIDResult.java index 65409db5..e9634658 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/utility/FieldByIDAndVMIDResult.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/utility/FieldByIDAndVMIDResult.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions.utility; import com.inspur.edp.web.jitengine.expressions.ModuleSchemaEntities; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/utility/TableFieldsInfo.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/utility/TableFieldsInfo.java index 907b5192..21b56a7d 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/utility/TableFieldsInfo.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/expressions/utility/TableFieldsInfo.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.expressions.utility; import com.inspur.edp.web.jitengine.expressions.ModuleSchemaEntities; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/i18nresource/GenerateResourceManager.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/i18nresource/GenerateResourceManager.java index 12aab95e..e717c342 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/i18nresource/GenerateResourceManager.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/i18nresource/GenerateResourceManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.i18nresource; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/i18nresource/GeneratedI18nResourceList.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/i18nresource/GeneratedI18nResourceList.java index f7c80dfa..02e2393b 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/i18nresource/GeneratedI18nResourceList.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/i18nresource/GeneratedI18nResourceList.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.i18nresource; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/i18nresource/GeneratedI8nResource.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/i18nresource/GeneratedI8nResource.java index 34a8a860..af0ccc15 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/i18nresource/GeneratedI8nResource.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/i18nresource/GeneratedI8nResource.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.i18nresource; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandServiceAnalysis.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandServiceAnalysis.java index 681dcbe0..6e13ff9e 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandServiceAnalysis.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandServiceAnalysis.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadataanalysis; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandsAnalysis.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandsAnalysis.java index 32eb8ab8..f8fe238a 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandsAnalysis.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/CommandsAnalysis.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadataanalysis; import com.inspur.edp.cdp.web.component.metadata.define.WebComponentMetadata; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/EapiAnalysis.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/EapiAnalysis.java index 88bbf2a5..473d427c 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/EapiAnalysis.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/EapiAnalysis.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadataanalysis; import com.fasterxml.jackson.databind.PropertyNamingStrategy; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/FormAnalysis.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/FormAnalysis.java index a5eaac89..67b896ad 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/FormAnalysis.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/FormAnalysis.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadataanalysis; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/StateMachineAnalysis.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/StateMachineAnalysis.java index 7ddb9898..91bcd4eb 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/StateMachineAnalysis.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/StateMachineAnalysis.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadataanalysis; import com.inspur.edp.lcm.metadata.api.IMetadataContent; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/TsBuildConfigJsonGenerator.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/TsBuildConfigJsonGenerator.java index 94672d15..a7395c69 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/TsBuildConfigJsonGenerator.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/TsBuildConfigJsonGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadataanalysis; public class TsBuildConfigJsonGenerator { diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/form/FormComponentParser.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/form/FormComponentParser.java index cfd9aeda..cb538b54 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/form/FormComponentParser.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataanalysis/form/FormComponentParser.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadataanalysis.form; import com.inspur.edp.web.common.JITEngineConstants; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/BaseMetaDataManager.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/BaseMetaDataManager.java index 36ab9af7..1a52aab4 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/BaseMetaDataManager.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/BaseMetaDataManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadatamanager; import com.fasterxml.jackson.databind.PropertyNamingStrategy; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/CommandExtendProperty.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/CommandExtendProperty.java index abf8c5b7..7d862768 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/CommandExtendProperty.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/CommandExtendProperty.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadatamanager; /** diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/CommandServiceManager.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/CommandServiceManager.java index eeb995f2..c4364e67 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/CommandServiceManager.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/CommandServiceManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadatamanager; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/CommandsMetadataManager.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/CommandsMetadataManager.java index a359f651..ad970688 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/CommandsMetadataManager.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/CommandsMetadataManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadatamanager; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/ComponentMetadataManager.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/ComponentMetadataManager.java index 0e450248..37b0d678 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/ComponentMetadataManager.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/ComponentMetadataManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadatamanager; import com.inspur.edp.cdp.web.component.metadata.define.WebComponentMetadata; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/EapiMetadataManager.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/EapiMetadataManager.java index 2fe66a0b..83fb816b 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/EapiMetadataManager.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/EapiMetadataManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadatamanager; import com.inspur.edp.lcm.metadata.api.IMetadataContent; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/FormMetadataManager.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/FormMetadataManager.java index 9853fef5..21fa144d 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/FormMetadataManager.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/FormMetadataManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadatamanager; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/StateMachineMetadataManager.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/StateMachineMetadataManager.java index 014a4190..8af6360a 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/StateMachineMetadataManager.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/StateMachineMetadataManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadatamanager; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/app/AppMetadataManager.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/app/AppMetadataManager.java index 64817443..d9e5dfbc 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/app/AppMetadataManager.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamanager/app/AppMetadataManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadatamanager.app; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamodel/app/AppConfig.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamodel/app/AppConfig.java index 0137717d..16181c2f 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamodel/app/AppConfig.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamodel/app/AppConfig.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadatamodel.app; import java.util.ArrayList; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamodel/app/form/AnalysisExternalComponentResult.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamodel/app/form/AnalysisExternalComponentResult.java index 71e07338..cd54d6d8 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamodel/app/form/AnalysisExternalComponentResult.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadatamodel/app/form/AnalysisExternalComponentResult.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadatamodel.app.form; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataparser/commandservice/CommandServiceAnalysis.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataparser/commandservice/CommandServiceAnalysis.java index 2bd81715..eb0c0482 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataparser/commandservice/CommandServiceAnalysis.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/metadataparser/commandservice/CommandServiceAnalysis.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.metadataparser.commandservice; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/sourcecode/SourceCodeInFormManager.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/sourcecode/SourceCodeInFormManager.java index 6b8b9002..591bf826 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/sourcecode/SourceCodeInFormManager.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/sourcecode/SourceCodeInFormManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.sourcecode; import com.fasterxml.jackson.core.JsonProcessingException; diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/sourcecode/SourceCodeInFormRef.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/sourcecode/SourceCodeInFormRef.java index cfa58bad..6975989d 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/sourcecode/SourceCodeInFormRef.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/sourcecode/SourceCodeInFormRef.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.sourcecode; /** diff --git a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/utility/PathUtility.java b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/utility/PathUtility.java index 734f9016..5bcecddf 100644 --- a/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/utility/PathUtility.java +++ b/web-form-jitengine/src/main/java/com/inspur/edp/web/jitengine/utility/PathUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.jitengine.utility; diff --git a/web-form-metadata-api/pom.xml b/web-form-metadata-api/pom.xml index b434f66b..01201010 100644 --- a/web-form-metadata-api/pom.xml +++ b/web-form-metadata-api/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/FormMetadataCommonService.java b/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/FormMetadataCommonService.java index bf236659..446060be 100644 --- a/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/FormMetadataCommonService.java +++ b/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/FormMetadataCommonService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.api; import com.inspur.edp.web.formmetadata.api.entity.FormSuInfoEntity; diff --git a/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/FormMetadataWebService.java b/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/FormMetadataWebService.java index bd082f48..ff0a7e53 100644 --- a/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/FormMetadataWebService.java +++ b/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/FormMetadataWebService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.api; import com.inspur.edp.web.common.entity.ResultMessage; diff --git a/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/entity/FormSuInfoEntity.java b/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/entity/FormSuInfoEntity.java index 8beec112..339147bf 100644 --- a/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/entity/FormSuInfoEntity.java +++ b/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/entity/FormSuInfoEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.api.entity; import lombok.Data; diff --git a/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/entity/ReplicateFormRequestBody.java b/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/entity/ReplicateFormRequestBody.java index c88463ba..d58ef9e7 100644 --- a/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/entity/ReplicateFormRequestBody.java +++ b/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/entity/ReplicateFormRequestBody.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.api.entity; import java.io.Serializable; diff --git a/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/entity/SuInfoWithBizobjIdEntity.java b/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/entity/SuInfoWithBizobjIdEntity.java index 2e6c11a9..eb524838 100644 --- a/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/entity/SuInfoWithBizobjIdEntity.java +++ b/web-form-metadata-api/src/main/java/com/inspur/edp/web/formmetadata/api/entity/SuInfoWithBizobjIdEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.api.entity; import lombok.Data; diff --git a/web-form-metadata/pom.xml b/web-form-metadata/pom.xml index 93e8256d..5850bb4d 100644 --- a/web-form-metadata/pom.xml +++ b/web-form-metadata/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/config/FormMetadataConfiguration.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/config/FormMetadataConfiguration.java index cb80d4c6..0c5a8169 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/config/FormMetadataConfiguration.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/config/FormMetadataConfiguration.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.config; import com.inspur.edp.web.formmetadata.api.FormMetadataCommonService; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/constant/ReplicationConstant.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/constant/ReplicationConstant.java index f47d2564..3ed13e75 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/constant/ReplicationConstant.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/constant/ReplicationConstant.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.constant; public class ReplicationConstant { diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/entity/FormRelateViewModelEntity.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/entity/FormRelateViewModelEntity.java index 672f7bd8..b555d2e7 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/entity/FormRelateViewModelEntity.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/entity/FormRelateViewModelEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.entity; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/entity/ResourceMetadataType.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/entity/ResourceMetadataType.java index 2f8ed725..e42b857b 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/entity/ResourceMetadataType.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/entity/ResourceMetadataType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.entity; /** diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/FormMetadataSaveEventListener.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/FormMetadataSaveEventListener.java index b338e904..4cb0f4b7 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/FormMetadataSaveEventListener.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/FormMetadataSaveEventListener.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.formmetadata.event; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/WebCommandMetadataDelete.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/WebCommandMetadataDelete.java index b090dc0d..ed6a2bc9 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/WebCommandMetadataDelete.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/event/WebCommandMetadataDelete.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.formmetadata.event; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/FormMetadataI18nService.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/FormMetadataI18nService.java index a3be67f0..0a89542a 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/FormMetadataI18nService.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/FormMetadataI18nService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/I18nResourceItemManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/I18nResourceItemManager.java index b315367e..f0cb4062 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/I18nResourceItemManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/I18nResourceItemManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/II18nResource.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/II18nResource.java index c7bd239b..4aadc33e 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/II18nResource.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/II18nResource.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/BaseComponent.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/BaseComponent.java index 190e492a..9eb502a5 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/BaseComponent.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/BaseComponent.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/ComponentContext.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/ComponentContext.java index d04bc976..1095760d 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/ComponentContext.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/ComponentContext.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/ComponentUtility.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/ComponentUtility.java index b38445ca..6dbf8b35 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/ComponentUtility.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/ComponentUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/I18nResourceStrategyContext.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/I18nResourceStrategyContext.java index 50ef4e5f..991fb8de 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/I18nResourceStrategyContext.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/I18nResourceStrategyContext.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/I18nResourceStrategyFactory.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/I18nResourceStrategyFactory.java index 191f8938..c29c5a2f 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/I18nResourceStrategyFactory.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/I18nResourceStrategyFactory.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/I18nResourceUtility.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/I18nResourceUtility.java index e16e5f2d..3c82d5e3 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/I18nResourceUtility.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/I18nResourceUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/IComponent.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/IComponent.java index 430d1048..33e30384 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/IComponent.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/IComponent.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component; import java.util.HashMap; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/II18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/II18nResourceStrategy.java index 9e515b95..e93005e4 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/II18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/II18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/AbstractI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/AbstractI18nResourceStrategy.java index 7dfe047a..88bf4f28 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/AbstractI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/AbstractI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ButtonI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ButtonI18nResourceStrategy.java index d3f3ec48..1607a551 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ButtonI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ButtonI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy.ComponentNameFactory; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/CalendarI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/CalendarI18nResourceStrategy.java index d3ab9cd0..b4290a54 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/CalendarI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/CalendarI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy.ComponentNameFactory; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/CheckGroupI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/CheckGroupI18nResourceStrategy.java index 9de59c22..27d89dde 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/CheckGroupI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/CheckGroupI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ComboListI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ComboListI18nResourceStrategy.java index fbe3474e..0d2ea86b 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ComboListI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ComboListI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ComboLookupI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ComboLookupI18nResourceStrategy.java index f633af2d..4e82c23d 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ComboLookupI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ComboLookupI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/DataGridI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/DataGridI18nResourceStrategy.java index 91d9a150..fbab2179 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/DataGridI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/DataGridI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/DateBoxI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/DateBoxI18nResourceStrategy.java index 413baa63..c4e694ad 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/DateBoxI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/DateBoxI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/DatePickerI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/DatePickerI18nResourceStrategy.java index 5c3ec4c8..3b97f318 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/DatePickerI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/DatePickerI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/DefaultComponentI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/DefaultComponentI18nResourceStrategy.java index 75cbe47f..3ebe0267 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/DefaultComponentI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/DefaultComponentI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy.ComponentNameFactory; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/EnumFieldI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/EnumFieldI18nResourceStrategy.java index c33a8175..921ec2fd 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/EnumFieldI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/EnumFieldI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/FieldSetI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/FieldSetI18nResourceStrategy.java index 3c763a37..edea34da 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/FieldSetI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/FieldSetI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/FileUploadPreviewI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/FileUploadPreviewI18nResourceStrategy.java index 4d27611a..2ef2db4b 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/FileUploadPreviewI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/FileUploadPreviewI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/FooterI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/FooterI18nResourceStrategy.java index 7cb1d8c8..3318b0a1 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/FooterI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/FooterI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/GridFieldI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/GridFieldI18nResourceStrategy.java index dd3cd4bc..aeff00e1 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/GridFieldI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/GridFieldI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/HeaderI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/HeaderI18nResourceStrategy.java index 466e53fe..6f588bc5 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/HeaderI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/HeaderI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/HelpProviderI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/HelpProviderI18nResourceStrategy.java index 0976ba0d..b8430ed0 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/HelpProviderI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/HelpProviderI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/HtmlTemplateI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/HtmlTemplateI18nResourceStrategy.java index b3fd2bb4..d34a10c1 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/HtmlTemplateI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/HtmlTemplateI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/InputGroupI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/InputGroupI18nResourceStrategy.java index cb980360..9c733fb9 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/InputGroupI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/InputGroupI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/LanguageTextBoxI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/LanguageTextBoxI18nResourceStrategy.java index 6b6504bc..709632ee 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/LanguageTextBoxI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/LanguageTextBoxI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ListFilterI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ListFilterI18nResourceStrategy.java index 54c1bae7..7b262742 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ListFilterI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ListFilterI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ListNavI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ListNavI18nResourceStrategy.java index 0c1b62a7..376a2009 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ListNavI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ListNavI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy.ComponentNameFactory; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ListViewII18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ListViewII18nResourceStrategy.java index f345be10..fadab406 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ListViewII18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ListViewII18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/LookupI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/LookupI18nResourceStrategy.java index abd32d08..f26fcac3 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/LookupI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/LookupI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/MultiTextBoxI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/MultiTextBoxI18nResourceStrategy.java index cec5374e..2f22bd25 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/MultiTextBoxI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/MultiTextBoxI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/NavTabI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/NavTabI18nResourceStrategy.java index 1d43c997..89d8d022 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/NavTabI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/NavTabI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/NumberRangeI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/NumberRangeI18nResourceStrategy.java index 62ac9a2f..e4115c62 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/NumberRangeI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/NumberRangeI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/NumberSpinnerI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/NumberSpinnerI18nResourceStrategy.java index 8e3e62a2..f07f9ccf 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/NumberSpinnerI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/NumberSpinnerI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/NumericBoxI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/NumericBoxI18nResourceStrategy.java index 216bf8be..bb34d217 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/NumericBoxI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/NumericBoxI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/OrganizationSelectorI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/OrganizationSelectorI18nResourceStrategy.java index 6bf367e5..0c6341e9 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/OrganizationSelectorI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/OrganizationSelectorI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/PersonnelSelectorI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/PersonnelSelectorI18nResourceStrategy.java index 68864d7b..0d702ee1 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/PersonnelSelectorI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/PersonnelSelectorI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/QueryFrameworkI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/QueryFrameworkI18nResourceStrategy.java index f3433656..457cf0cd 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/QueryFrameworkI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/QueryFrameworkI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy.ComponentNameFactory; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/QuerySchemeI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/QuerySchemeI18nResourceStrategy.java index d7972eaf..b364e3bf 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/QuerySchemeI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/QuerySchemeI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/RadioGroupI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/RadioGroupI18nResourceStrategy.java index a3254c15..4fbc7b2e 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/RadioGroupI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/RadioGroupI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/RichTextBoxI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/RichTextBoxI18nResourceStrategy.java index db033ee6..052ee7ac 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/RichTextBoxI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/RichTextBoxI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ScrollSpyI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ScrollSpyI18nResourceStrategy.java index cba0e133..05da0507 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ScrollSpyI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ScrollSpyI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/SectionI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/SectionI18nResourceStrategy.java index ba38d50d..980ca547 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/SectionI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/SectionI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TagI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TagI18nResourceStrategy.java index e22313a0..e5564fae 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TagI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TagI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy.ComponentNameFactory; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TagsI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TagsI18nResourceStrategy.java index 3498545d..e1a45fe0 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TagsI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TagsI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TextBoxI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TextBoxI18nResourceStrategy.java index c1cb9ede..51e9b030 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TextBoxI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TextBoxI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TimePickerI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TimePickerI18nResourceStrategy.java index 9a687580..80b012ba 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TimePickerI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TimePickerI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TimeSpinnerI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TimeSpinnerI18nResourceStrategy.java index 4fadcc68..f6f45b8f 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TimeSpinnerI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/TimeSpinnerI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItemCollection; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ToolBarItemI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ToolBarItemI18nResourceStrategy.java index bf7d0ad6..24f4d61a 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ToolBarItemI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ToolBarItemI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy.ComponentNameFactory; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ViewChangeI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ViewChangeI18nResourceStrategy.java index ed60ba8d..24d03cb7 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ViewChangeI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/ViewChangeI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/WizardI18nResourceStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/WizardI18nResourceStrategy.java index d7b08109..fe5c3b9b 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/WizardI18nResourceStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/i18nresourcestrategy/WizardI18nResourceStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.i18nresourcestrategy; import com.inspur.edp.lcm.metadata.api.entity.I18nResourceItem; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/AbstractComponentIdStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/AbstractComponentIdStrategy.java index 70506e70..165cc7de 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/AbstractComponentIdStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/AbstractComponentIdStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.idstrategy; import com.inspur.edp.web.formmetadata.i18n.component.ComponentUtility; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/ComponentIdFactory.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/ComponentIdFactory.java index 1a6916e0..aa05f055 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/ComponentIdFactory.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/ComponentIdFactory.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.idstrategy; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/ComponentIdType.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/ComponentIdType.java index 89a65c27..85387ccb 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/ComponentIdType.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/ComponentIdType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.idstrategy; /** diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/DefaultIdStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/DefaultIdStrategy.java index 2d3af235..87cb1909 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/DefaultIdStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/DefaultIdStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.idstrategy; import com.inspur.edp.web.formmetadata.i18n.component.strategy.idstrategy.AbstractComponentIdStrategy; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/HtmlTemplateIdStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/HtmlTemplateIdStrategy.java index 4e1c7434..44d6b01c 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/HtmlTemplateIdStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/HtmlTemplateIdStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.idstrategy; import com.inspur.edp.web.formmetadata.i18n.component.ComponentUtility; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/IComponentIdStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/IComponentIdStrategy.java index c52e307b..cd254142 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/IComponentIdStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/idstrategy/IComponentIdStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.idstrategy; import java.util.ArrayList; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/AbstractComponentNameStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/AbstractComponentNameStrategy.java index 8d98509b..a81abe05 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/AbstractComponentNameStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/AbstractComponentNameStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy; import com.inspur.edp.web.formmetadata.i18n.component.ComponentUtility; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/CaptionStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/CaptionStrategy.java index a3549a82..6656a18e 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/CaptionStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/CaptionStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy; import com.inspur.edp.web.formmetadata.i18n.component.ComponentUtility; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/ComponentNameFactory.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/ComponentNameFactory.java index d1f9c095..6d6c102f 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/ComponentNameFactory.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/ComponentNameFactory.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/ComponentNameType.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/ComponentNameType.java index b7c0c578..f7604617 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/ComponentNameType.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/ComponentNameType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy; /** diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/DefaultNameStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/DefaultNameStrategy.java index a19b35e1..36439510 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/DefaultNameStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/DefaultNameStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy; /** diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/IComponentNameStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/IComponentNameStrategy.java index c7501cc5..aabbd4aa 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/IComponentNameStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/IComponentNameStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy; import java.util.*; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/LabelStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/LabelStrategy.java index c9d9fea6..cc54b0fb 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/LabelStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/LabelStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy; import com.inspur.edp.web.formmetadata.i18n.component.ComponentUtility; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/PresetQuerySolutionNameStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/PresetQuerySolutionNameStrategy.java index 3386d108..961a52f7 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/PresetQuerySolutionNameStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/PresetQuerySolutionNameStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy; import com.inspur.edp.web.formmetadata.i18n.component.ComponentUtility; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/QueryNameStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/QueryNameStrategy.java index 83940d39..d451a468 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/QueryNameStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/QueryNameStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy; import com.inspur.edp.web.formmetadata.i18n.component.ComponentUtility; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/TextStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/TextStrategy.java index 584465d3..b1970f24 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/TextStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/TextStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy; import com.inspur.edp.web.formmetadata.i18n.component.ComponentUtility; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/TitleStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/TitleStrategy.java index ca8823a3..be669247 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/TitleStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/component/strategy/namestrategy/TitleStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.component.strategy.namestrategy; import com.inspur.edp.web.formmetadata.i18n.component.ComponentUtility; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/constant/ComponentType.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/constant/ComponentType.java index f83f766c..894619c4 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/constant/ComponentType.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/constant/ComponentType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.constant; /** diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/constant/I18nResourceConstant.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/constant/I18nResourceConstant.java index 3bfe52ea..e16a67a5 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/constant/I18nResourceConstant.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/i18n/constant/I18nResourceConstant.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.i18n.constant; public class I18nResourceConstant { diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/initialization/FormMetadataInitialization.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/initialization/FormMetadataInitialization.java index ce12b4b7..b54ba464 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/initialization/FormMetadataInitialization.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/initialization/FormMetadataInitialization.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.initialization; import com.inspur.edp.lcm.metadata.spi.MetadataContentManager; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/lic/FormMetadataCreateLicControlListener.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/lic/FormMetadataCreateLicControlListener.java index d691098d..7af76060 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/lic/FormMetadataCreateLicControlListener.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/lic/FormMetadataCreateLicControlListener.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.lic; import com.inspur.edp.lcm.metadata.spi.lic.LicControlExtendForIde; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/lic/ModuleWithMetadataType.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/lic/ModuleWithMetadataType.java index 107126e9..d011087a 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/lic/ModuleWithMetadataType.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/lic/ModuleWithMetadataType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.lic; import java.util.ArrayList; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/manager/FormMetadataManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/manager/FormMetadataManager.java index 7c538218..3deafcf8 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/manager/FormMetadataManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/manager/FormMetadataManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.manager; import com.inspur.edp.web.common.entity.ResultMessage; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/FormMetadataContent.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/FormMetadataContent.java index 48cae46a..560ff46a 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/FormMetadataContent.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/FormMetadataContent.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.metadata; import com.fasterxml.jackson.annotation.JsonIgnore; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/FormMetadataContentService.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/FormMetadataContentService.java index 90b4e412..7bfb7043 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/FormMetadataContentService.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/FormMetadataContentService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.metadata; import com.fasterxml.jackson.databind.JsonNode; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/formdom/FormDOM.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/formdom/FormDOM.java index 049e1bb2..5f98902c 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/formdom/FormDOM.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/formdom/FormDOM.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.metadata.formdom; import com.inspur.edp.web.formmetadata.metadata.module.Module; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/formdom/FormDomService.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/formdom/FormDomService.java index 03284cf0..a281111e 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/formdom/FormDomService.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/formdom/FormDomService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.metadata.formdom; import com.inspur.edp.web.formmetadata.metadata.module.ModuleService; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/formdom/FormOptions.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/formdom/FormOptions.java index 6f042c77..dd46dada 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/formdom/FormOptions.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/formdom/FormOptions.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.metadata.formdom; /** diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/i18nsetting/I18nSetting.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/i18nsetting/I18nSetting.java index 15b70f61..e54f1fa9 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/i18nsetting/I18nSetting.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/i18nsetting/I18nSetting.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.metadata.i18nsetting; /** diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/languagepackage/LanguagePackage.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/languagepackage/LanguagePackage.java index 7a5f22ab..a60f0d56 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/languagepackage/LanguagePackage.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/languagepackage/LanguagePackage.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.metadata.languagepackage; /** diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/module/Module.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/module/Module.java index 9c9b2b35..6c21bce5 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/module/Module.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/module/Module.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.formmetadata.metadata.module; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/module/ModuleService.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/module/ModuleService.java index a366e8be..eacf25de 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/module/ModuleService.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/metadata/module/ModuleService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.metadata.module; import java.util.*; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java index 64f76ee8..23d7cede 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmdManager.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.formmetadata.replication; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmpSourceTsFileCloneManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmpSourceTsFileCloneManager.java index 4afc888f..99128f5e 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmpSourceTsFileCloneManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataCmpSourceTsFileCloneManager.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.formmetadata.replication; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java index 4bc93f06..3fe2e17c 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataReplicator.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.formmetadata.replication; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java index 8e5525f3..a7fe19d8 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataSmManager.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.formmetadata.replication; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java index e451553a..ca512b56 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/FormMetadataVoManager.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.formmetadata.replication; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetaDataReplicateBeforeValidator.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetaDataReplicateBeforeValidator.java index 70de8a84..94f43b7b 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetaDataReplicateBeforeValidator.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetaDataReplicateBeforeValidator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.replication; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataCloneManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataCloneManager.java index e5b281a8..d1a0a79a 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataCloneManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataCloneManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.replication; import com.inspur.edp.lcm.metadata.api.IMetadataContent; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataContentCloneManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataContentCloneManager.java index 1538e1e0..55fca7f1 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataContentCloneManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataContentCloneManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.replication; import com.fasterxml.jackson.databind.JsonNode; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataHeaderCloneManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataHeaderCloneManager.java index 3725ba61..d6c2a957 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataHeaderCloneManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataHeaderCloneManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.replication; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataReplicationContext.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataReplicationContext.java index 859220c4..ea7adc3d 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataReplicationContext.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataReplicationContext.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.replication; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataReplicationContextService.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataReplicationContextService.java index 1ce76942..8a756b29 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataReplicationContextService.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/MetadataReplicationContextService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.replication; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/ProjectInformationManager.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/ProjectInformationManager.java index 61b82747..cad72027 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/ProjectInformationManager.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/ProjectInformationManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.replication; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/CloneAdjustStrategyFactory.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/CloneAdjustStrategyFactory.java index 196251bc..70f8cc75 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/CloneAdjustStrategyFactory.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/CloneAdjustStrategyFactory.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.replication.adjust; import com.inspur.edp.cdp.web.component.metadata.define.WebComponentMetadata; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/DefaultCloneAdjustStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/DefaultCloneAdjustStrategy.java index c4175274..22a27e25 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/DefaultCloneAdjustStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/DefaultCloneAdjustStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.replication.adjust; import com.inspur.edp.lcm.metadata.api.IMetadataContent; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/FormMetadataCloneAdjustStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/FormMetadataCloneAdjustStrategy.java index 6fb81222..2f98c4b7 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/FormMetadataCloneAdjustStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/FormMetadataCloneAdjustStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.replication.adjust; import com.inspur.edp.formserver.viewmodel.GspViewModel; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/GspMetadataCloneAdjustStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/GspMetadataCloneAdjustStrategy.java index 1ab22115..a022389c 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/GspMetadataCloneAdjustStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/GspMetadataCloneAdjustStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.replication.adjust; import com.inspur.edp.lcm.metadata.api.IMetadataContent; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/GspViewModelCloneAdjustStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/GspViewModelCloneAdjustStrategy.java index bc5fd5cb..7ca659ef 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/GspViewModelCloneAdjustStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/GspViewModelCloneAdjustStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.replication.adjust; import com.inspur.edp.formserver.viewmodel.GspViewModel; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/WebCommandsMetadataCloneAdjustStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/WebCommandsMetadataCloneAdjustStrategy.java index 9d87f197..503eac92 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/WebCommandsMetadataCloneAdjustStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/WebCommandsMetadataCloneAdjustStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.replication.adjust; import com.fasterxml.jackson.databind.JsonNode; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/WebComponentMetadataCloneAdjustStrategy.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/WebComponentMetadataCloneAdjustStrategy.java index d37083e9..72ad50e1 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/WebComponentMetadataCloneAdjustStrategy.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/replication/adjust/WebComponentMetadataCloneAdjustStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.replication.adjust; import com.inspur.edp.cdp.web.component.metadata.define.WebComponentMetadata; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/serializer/FormMetadataContentSerializer.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/serializer/FormMetadataContentSerializer.java index 4da31e95..5386fdd7 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/serializer/FormMetadataContentSerializer.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/serializer/FormMetadataContentSerializer.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.serializer; import com.fasterxml.jackson.databind.JsonNode; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/serializer/FormMetadataJsonSerializer.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/serializer/FormMetadataJsonSerializer.java index decf6202..dd09b31b 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/serializer/FormMetadataJsonSerializer.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/serializer/FormMetadataJsonSerializer.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.serializer; import com.fasterxml.jackson.databind.JsonNode; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/serializer/FormMetadataTransferSerializer.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/serializer/FormMetadataTransferSerializer.java index 2022bdb9..c295d4f1 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/serializer/FormMetadataTransferSerializer.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/serializer/FormMetadataTransferSerializer.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.serializer; import com.fasterxml.jackson.databind.PropertyNamingStrategy; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetadataCommonServiceImpl.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetadataCommonServiceImpl.java index 2f37a603..6b7782db 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetadataCommonServiceImpl.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetadataCommonServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.service; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetadataRTService.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetadataRTService.java index b5e7c932..173b031a 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetadataRTService.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetadataRTService.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.formmetadata.service; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetataService.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetataService.java index 3e137698..c81fc599 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetataService.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/service/FormMetataService.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.formmetadata.service; diff --git a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/webservice/FormMetadataWebServiceImpl.java b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/webservice/FormMetadataWebServiceImpl.java index 52385c88..065a6c4b 100644 --- a/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/webservice/FormMetadataWebServiceImpl.java +++ b/web-form-metadata/src/main/java/com/inspur/edp/web/formmetadata/webservice/FormMetadataWebServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.formmetadata.webservice; import com.inspur.edp.web.common.entity.ResultCode; diff --git a/web-form-process-api/pom.xml b/web-form-process-api/pom.xml index 306327b8..c3c45db1 100644 --- a/web-form-process-api/pom.xml +++ b/web-form-process-api/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-form-process/pom.xml b/web-form-process/pom.xml index 854fdd3c..d855fae6 100644 --- a/web-form-process/pom.xml +++ b/web-form-process/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-frontendproject-api/pom.xml b/web-frontendproject-api/pom.xml index 3aea7893..83623f8f 100644 --- a/web-frontendproject-api/pom.xml +++ b/web-frontendproject-api/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/ChosenFormItem.java b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/ChosenFormItem.java index ed00babe..e3e46599 100644 --- a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/ChosenFormItem.java +++ b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/ChosenFormItem.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.entity; import lombok.Data; diff --git a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/ChosenFormList.java b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/ChosenFormList.java index 93390c06..66c10d5e 100644 --- a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/ChosenFormList.java +++ b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/ChosenFormList.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.entity; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/FrontendProjectGenerateParameter.java b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/FrontendProjectGenerateParameter.java index b6072e47..cd6c6fe1 100644 --- a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/FrontendProjectGenerateParameter.java +++ b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/FrontendProjectGenerateParameter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.entity; /** diff --git a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/resolver/ResolveFormMetadataItem.java b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/resolver/ResolveFormMetadataItem.java index 2e71be06..41788d2c 100644 --- a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/resolver/ResolveFormMetadataItem.java +++ b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/resolver/ResolveFormMetadataItem.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.entity.resolver; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/resolver/ResolveFormMetadataList.java b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/resolver/ResolveFormMetadataList.java index 08d8d69e..a21565ab 100644 --- a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/resolver/ResolveFormMetadataList.java +++ b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/entity/resolver/ResolveFormMetadataList.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.entity.resolver; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/webservice/FormDynamicParameter.java b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/webservice/FormDynamicParameter.java index 6ee5c11f..e17f25b9 100644 --- a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/webservice/FormDynamicParameter.java +++ b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/webservice/FormDynamicParameter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.webservice; /** diff --git a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/webservice/FormMetadataDebugUriWebService.java b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/webservice/FormMetadataDebugUriWebService.java index a16e6d30..8112f94d 100644 --- a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/webservice/FormMetadataDebugUriWebService.java +++ b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/webservice/FormMetadataDebugUriWebService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.webservice; import javax.ws.rs.GET; diff --git a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/webservice/FrontendProjectWebService.java b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/webservice/FrontendProjectWebService.java index 1d582cfe..40fb3e24 100644 --- a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/webservice/FrontendProjectWebService.java +++ b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/webservice/FrontendProjectWebService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.webservice; import com.inspur.edp.web.common.entity.ResultMessage; diff --git a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/webservice/ZeroCodeWebService.java b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/webservice/ZeroCodeWebService.java index 71a4f2c1..d6cf2b7a 100644 --- a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/webservice/ZeroCodeWebService.java +++ b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/webservice/ZeroCodeWebService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.webservice; import com.inspur.edp.web.common.entity.ResultMessage; diff --git a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeFormFormatParameter.java b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeFormFormatParameter.java index a880afa9..dc4fddf1 100644 --- a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeFormFormatParameter.java +++ b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeFormFormatParameter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode; import com.inspur.edp.lcm.metadata.api.IMetadataContent; diff --git a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeFormParameter.java b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeFormParameter.java index 5b96d781..a3252ead 100644 --- a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeFormParameter.java +++ b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeFormParameter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode; import com.inspur.edp.lcm.metadata.api.IMetadataContent; diff --git a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeFormRefMetadataParameter.java b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeFormRefMetadataParameter.java index 0a2c3641..c81265b2 100644 --- a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeFormRefMetadataParameter.java +++ b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeFormRefMetadataParameter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeParameter.java b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeParameter.java index 38f4311f..e2ea7b56 100644 --- a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeParameter.java +++ b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeParameter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode; import com.inspur.edp.web.common.entity.TerminalType; diff --git a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeService.java b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeService.java index 0c8649cc..b8241aaa 100644 --- a/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeService.java +++ b/web-frontendproject-api/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode; /** diff --git a/web-frontendproject/pom.xml b/web-frontendproject/pom.xml index 110156cf..032f6c8c 100644 --- a/web-frontendproject/pom.xml +++ b/web-frontendproject/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectCompiler.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectCompiler.java index 38c66da5..b83d5018 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectCompiler.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectCompiler.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectDeployer.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectDeployer.java index e5dee385..32c5a96f 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectDeployer.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectDeployer.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject; import com.inspur.edp.ide.setting.api.entity.Deployment; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectExtractor.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectExtractor.java index 5e39669b..5baabad8 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectExtractor.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectExtractor.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject; import com.inspur.edp.lcm.metadata.api.entity.ExtractContext; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectManager.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectManager.java index 98a14705..86c4eea7 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectManager.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject; import com.inspur.edp.web.common.entity.ResultCode; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectService.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectService.java index 8eb3d41a..e0d67144 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectService.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject; import com.inspur.edp.web.common.GSPException; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectUtility.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectUtility.java index 6b2ad741..b870d1dc 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectUtility.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/FrontendProjectUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/NpmPackageCheckUpdate.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/NpmPackageCheckUpdate.java index 9c0e69f1..6afb2627 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/NpmPackageCheckUpdate.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/NpmPackageCheckUpdate.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject; import com.inspur.edp.web.npmpackage.api.entity.NpmPackageResponse; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/build/FrontendProjectBuild.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/build/FrontendProjectBuild.java index f047122d..cb258a4e 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/build/FrontendProjectBuild.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/build/FrontendProjectBuild.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.build; import com.inspur.edp.web.common.GSPException; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ChangeDetectExecuteManager.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ChangeDetectExecuteManager.java index 18ab50e9..08a00477 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ChangeDetectExecuteManager.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ChangeDetectExecuteManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect; import com.inspur.edp.web.frontendproject.changedetect.context.ChangeDetectContext; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ChangeDetectExecuteResult.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ChangeDetectExecuteResult.java index b3700970..2d5f04ec 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ChangeDetectExecuteResult.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ChangeDetectExecuteResult.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect; /** diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ChangeDetectExecuteService.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ChangeDetectExecuteService.java index 39542f8e..0dc7d8ff 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ChangeDetectExecuteService.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ChangeDetectExecuteService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect; import com.inspur.edp.web.frontendproject.changedetect.context.ChangeDetectContext; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ChangeDetectExecuteType.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ChangeDetectExecuteType.java index ac36e66e..d6b76818 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ChangeDetectExecuteType.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ChangeDetectExecuteType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect; import com.inspur.edp.web.frontendproject.changedetect.compile.CompileChangeDetectExecuteServiceImpl; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ExcludePathEntity.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ExcludePathEntity.java index 4747e329..6eba7b87 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ExcludePathEntity.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/ExcludePathEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect; import lombok.Data; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/compile/AbstractCompileChangeDetectStepExecuteService.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/compile/AbstractCompileChangeDetectStepExecuteService.java index eaf2202c..6b7d43ef 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/compile/AbstractCompileChangeDetectStepExecuteService.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/compile/AbstractCompileChangeDetectStepExecuteService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect.compile; import com.inspur.edp.web.frontendproject.changedetect.step.AbstractChangeDetectStepExecuteService; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/compile/CompileChangeDetectExecuteServiceImpl.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/compile/CompileChangeDetectExecuteServiceImpl.java index 41596f89..b19784e9 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/compile/CompileChangeDetectExecuteServiceImpl.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/compile/CompileChangeDetectExecuteServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect.compile; import com.inspur.edp.web.frontendproject.changedetect.ChangeDetectExecuteResult; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/compile/CompileChangeDetectType.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/compile/CompileChangeDetectType.java index a040ce04..ecaba71d 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/compile/CompileChangeDetectType.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/compile/CompileChangeDetectType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect.compile; import com.inspur.edp.web.frontendproject.changedetect.compile.stepexecute.FileChangeStepExecuteImpl; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/compile/stepexecute/FileChangeStepExecuteImpl.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/compile/stepexecute/FileChangeStepExecuteImpl.java index 1a6e816e..3685364c 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/compile/stepexecute/FileChangeStepExecuteImpl.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/compile/stepexecute/FileChangeStepExecuteImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect.compile.stepexecute; import com.inspur.edp.lcm.metadata.api.entity.OperationEnum; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/context/ChangeDetectContext.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/context/ChangeDetectContext.java index 8188092f..c57e339e 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/context/ChangeDetectContext.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/context/ChangeDetectContext.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect.context; import com.inspur.edp.web.common.entity.TerminalType; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/AbstractGenerateChangeDetectStepExecuteService.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/AbstractGenerateChangeDetectStepExecuteService.java index dbb774c0..ce7a15bd 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/AbstractGenerateChangeDetectStepExecuteService.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/AbstractGenerateChangeDetectStepExecuteService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect.generate; import com.inspur.edp.web.common.io.FileUtility; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/GenerateChangeDetectExecuteServiceImpl.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/GenerateChangeDetectExecuteServiceImpl.java index 9ae9448f..b73fcb75 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/GenerateChangeDetectExecuteServiceImpl.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/GenerateChangeDetectExecuteServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect.generate; import com.inspur.edp.web.frontendproject.changedetect.ChangeDetectExecuteResult; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/GenerateChangeDetectStepType.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/GenerateChangeDetectStepType.java index 34cc6c43..1da52764 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/GenerateChangeDetectStepType.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/GenerateChangeDetectStepType.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect.generate; import com.inspur.edp.web.frontendproject.changedetect.generate.stepexecute.FileChangeStepExecuteImpl; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/stepexecute/FileChangeStepExecuteImpl.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/stepexecute/FileChangeStepExecuteImpl.java index 7afa3a2a..9d69a276 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/stepexecute/FileChangeStepExecuteImpl.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/stepexecute/FileChangeStepExecuteImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect.generate.stepexecute; import com.inspur.edp.lcm.metadata.api.entity.OperationEnum; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/stepexecute/MetadataChangeStepExecuteImpl.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/stepexecute/MetadataChangeStepExecuteImpl.java index d4f822f2..90ae9ed9 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/stepexecute/MetadataChangeStepExecuteImpl.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/generate/stepexecute/MetadataChangeStepExecuteImpl.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect.generate.stepexecute; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/step/AbstractChangeDetectStepExecuteService.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/step/AbstractChangeDetectStepExecuteService.java index e49fedb4..0c3ecb19 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/step/AbstractChangeDetectStepExecuteService.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/step/AbstractChangeDetectStepExecuteService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect.step; import com.inspur.edp.lcm.metadata.api.service.MetadataProjectService; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/step/ChangeDetectStepExecuteResult.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/step/ChangeDetectStepExecuteResult.java index 2b0c8581..defb7311 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/step/ChangeDetectStepExecuteResult.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/step/ChangeDetectStepExecuteResult.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect.step; import com.inspur.edp.web.frontendproject.changedetect.ChangeDetectExecuteType; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/step/ChangeDetectStepExecuteService.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/step/ChangeDetectStepExecuteService.java index 7cb55450..6205d6ab 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/step/ChangeDetectStepExecuteService.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/changedetect/step/ChangeDetectStepExecuteService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.changedetect.step; import com.inspur.edp.web.frontendproject.changedetect.context.ChangeDetectContext; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/config/FormMetadataDebugUriConfiguration.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/config/FormMetadataDebugUriConfiguration.java index a1230d4a..79bc249f 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/config/FormMetadataDebugUriConfiguration.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/config/FormMetadataDebugUriConfiguration.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.config; import com.inspur.edp.web.frontendproject.debuguri.FormMetadataDebugUriWithMobile; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/config/FrontendProjectConfiguration.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/config/FrontendProjectConfiguration.java index 119c6140..58411bf7 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/config/FrontendProjectConfiguration.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/config/FrontendProjectConfiguration.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.config; import com.inspur.edp.web.frontendproject.webservice.FrontendProjectWebServiceImpl; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/config/ZeroCodeConfiguration.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/config/ZeroCodeConfiguration.java index 5a15458a..7219f186 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/config/ZeroCodeConfiguration.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/config/ZeroCodeConfiguration.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.config; import com.inspur.edp.web.frontendproject.webservice.ZeroCodeWebServiceImpl; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/customservice/SourceServicePathGenerator.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/customservice/SourceServicePathGenerator.java index 3894e9fd..171296f8 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/customservice/SourceServicePathGenerator.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/customservice/SourceServicePathGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.customservice; import com.inspur.edp.web.common.GSPException; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/AbstractFormMetadataDebugUri.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/AbstractFormMetadataDebugUri.java index 62555ab7..07347a48 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/AbstractFormMetadataDebugUri.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/AbstractFormMetadataDebugUri.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.debuguri; import com.inspur.edp.lcm.metadata.api.entity.MetadataProject; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/FormMetadataDebugUriService.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/FormMetadataDebugUriService.java index aa320e64..79147e28 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/FormMetadataDebugUriService.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/FormMetadataDebugUriService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.debuguri; import io.iec.edp.caf.commons.utils.SpringBeanUtils; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/FormMetadataDebugUriWithMobile.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/FormMetadataDebugUriWithMobile.java index a4ee62eb..d185cba5 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/FormMetadataDebugUriWithMobile.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/FormMetadataDebugUriWithMobile.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.frontendproject.debuguri; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/FormMetadataDebugUriWithPC.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/FormMetadataDebugUriWithPC.java index b3f2b72b..f693824f 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/FormMetadataDebugUriWithPC.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/debuguri/FormMetadataDebugUriWithPC.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.debuguri; import com.inspur.edp.lcm.metadata.api.entity.GspProject; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/deploy/FrontendProjectDeploy.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/deploy/FrontendProjectDeploy.java index 62a1bd78..f8dc8348 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/deploy/FrontendProjectDeploy.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/deploy/FrontendProjectDeploy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.deploy; import com.inspur.edp.web.common.GSPException; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/deploy/SingleDynamicFormDeploy.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/deploy/SingleDynamicFormDeploy.java index 06737a74..1e077a40 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/deploy/SingleDynamicFormDeploy.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/deploy/SingleDynamicFormDeploy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.deploy; import com.inspur.edp.web.common.constant.FrontendProjectConstant; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/formdynamic/FormDynamicMetadataResolver.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/formdynamic/FormDynamicMetadataResolver.java index 005a65e0..d50f44cb 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/formdynamic/FormDynamicMetadataResolver.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/formdynamic/FormDynamicMetadataResolver.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.formdynamic; import com.inspur.edp.web.frontendproject.FrontendProjectService; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/formdynamic/FormDynamicParameterValidator.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/formdynamic/FormDynamicParameterValidator.java index f987d39c..55c2a44f 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/formdynamic/FormDynamicParameterValidator.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/formdynamic/FormDynamicParameterValidator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.formdynamic; import com.inspur.edp.web.common.GSPException; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/formdynamic/FormDynamicSourceCodeGenerate.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/formdynamic/FormDynamicSourceCodeGenerate.java index 0f663c33..c507e101 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/formdynamic/FormDynamicSourceCodeGenerate.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/formdynamic/FormDynamicSourceCodeGenerate.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.formdynamic; import com.inspur.edp.web.frontendproject.entity.ChosenFormList; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/formdynamic/FormDynamicTagGetter.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/formdynamic/FormDynamicTagGetter.java index eb05c40f..ab90d9b8 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/formdynamic/FormDynamicTagGetter.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/formdynamic/FormDynamicTagGetter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.formdynamic; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/generate/FrontendProjectGenerate.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/generate/FrontendProjectGenerate.java index f1bfb919..dcb31e1f 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/generate/FrontendProjectGenerate.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/generate/FrontendProjectGenerate.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.generate; import com.inspur.edp.web.common.GSPException; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/metadata/FormMetadataManager.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/metadata/FormMetadataManager.java index 474f7a3c..d9ef985d 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/metadata/FormMetadataManager.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/metadata/FormMetadataManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.metadata; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/pageflow/PageFlowMetadataManager.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/pageflow/PageFlowMetadataManager.java index d3744263..b877fcdd 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/pageflow/PageFlowMetadataManager.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/pageflow/PageFlowMetadataManager.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.frontendproject.pageflow; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/resolver/FormMetadataResolver.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/resolver/FormMetadataResolver.java index 8eb84ab7..c41ca088 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/resolver/FormMetadataResolver.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/resolver/FormMetadataResolver.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.resolver; import com.inspur.edp.cdp.web.component.metadata.define.WebComponentMetadata; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/webservice/FormMetadataDebugUriWebServiceImpl.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/webservice/FormMetadataDebugUriWebServiceImpl.java index a7c50697..9046c069 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/webservice/FormMetadataDebugUriWebServiceImpl.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/webservice/FormMetadataDebugUriWebServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.webservice; import com.inspur.edp.web.frontendproject.FrontendProjectService; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/webservice/FrontendProjectWebServiceImpl.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/webservice/FrontendProjectWebServiceImpl.java index d5f0139e..b8ba3c8b 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/webservice/FrontendProjectWebServiceImpl.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/webservice/FrontendProjectWebServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.webservice; import com.inspur.edp.web.common.GSPException; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/webservice/ZeroCodeWebServiceImpl.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/webservice/ZeroCodeWebServiceImpl.java index 2868860c..f022bdc1 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/webservice/ZeroCodeWebServiceImpl.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/webservice/ZeroCodeWebServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.webservice; import com.inspur.edp.web.common.entity.ResultCode; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeConstants.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeConstants.java index 9c0e7e7a..57684707 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeConstants.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeConstants.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode; /** diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeParameterInitialization.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeParameterInitialization.java index 7255ff1e..bca1c7b9 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeParameterInitialization.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeParameterInitialization.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode; import com.inspur.edp.web.common.io.FileUtility; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeParameterValidator.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeParameterValidator.java index 68efefb7..54c4e188 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeParameterValidator.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeParameterValidator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeServiceImpl.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeServiceImpl.java index 51f80145..24c92bed 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeServiceImpl.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/ZeroCodeServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode; import com.inspur.edp.web.frontendproject.zerocode.operation.ZeroCodeManager; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/CommandMetadataOperation.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/CommandMetadataOperation.java index 73fbbf99..47c93990 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/CommandMetadataOperation.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/CommandMetadataOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation; import com.inspur.edp.cdp.web.component.metadata.define.WebComponentMetadata; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/EapiMetadataOperation.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/EapiMetadataOperation.java index f48a97ff..6a1182ed 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/EapiMetadataOperation.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/EapiMetadataOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation; import com.fasterxml.jackson.databind.PropertyNamingStrategy; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/FormExpressionOperation.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/FormExpressionOperation.java index f79d82e6..1232ba72 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/FormExpressionOperation.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/FormExpressionOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation; import com.inspur.edp.web.common.entity.TerminalType; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/FormMetadataContentOperation.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/FormMetadataContentOperation.java index 7a696a3e..dabd842f 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/FormMetadataContentOperation.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/FormMetadataContentOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation; import com.inspur.edp.web.common.entity.TerminalType; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/MetaDataOperationManager.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/MetaDataOperationManager.java index 4337cb99..10045b36 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/MetaDataOperationManager.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/MetaDataOperationManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation; import com.inspur.edp.web.frontendproject.zerocode.ZeroCodeFormFormatParameter; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/PageFlowMetadataOperation.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/PageFlowMetadataOperation.java index d7a61243..5fe2b43c 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/PageFlowMetadataOperation.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/PageFlowMetadataOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation; import com.inspur.edp.web.common.JITEngineConstants; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/StateMachineMetadataOperation.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/StateMachineMetadataOperation.java index 09617294..b73e3abd 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/StateMachineMetadataOperation.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/StateMachineMetadataOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation; import com.inspur.edp.lcm.metadata.api.IMetadataContent; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/ZeroCodeManager.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/ZeroCodeManager.java index 8d889428..cb1da1c4 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/ZeroCodeManager.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/ZeroCodeManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation; import com.inspur.edp.web.common.entity.TerminalType; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/services/ServicePathGenerator.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/services/ServicePathGenerator.java index 728a8f15..172c846f 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/services/ServicePathGenerator.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/services/ServicePathGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation.services; import com.inspur.edp.web.common.io.FileUtility; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/AbstractSourceCodeOperation.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/AbstractSourceCodeOperation.java index 1cb651cc..f668a132 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/AbstractSourceCodeOperation.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/AbstractSourceCodeOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation.sourcegenerate; import com.inspur.edp.web.frontendproject.zerocode.ZeroCodeParameter; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/ISourceCodeOperation.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/ISourceCodeOperation.java index feab4b2c..cba23372 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/ISourceCodeOperation.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/ISourceCodeOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation.sourcegenerate; import com.inspur.edp.web.frontendproject.zerocode.ZeroCodeParameter; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodeManager.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodeManager.java index 5083dfd9..a5b7279f 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodeManager.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodeManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation.sourcegenerate; import com.inspur.edp.web.common.entity.TerminalType; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodeMobileOperation.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodeMobileOperation.java index 6613e46c..d1b1f6c6 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodeMobileOperation.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodeMobileOperation.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation.sourcegenerate; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodePCOperation.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodePCOperation.java index c45a7d30..8b7f2df0 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodePCOperation.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodePCOperation.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation.sourcegenerate; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodePathGenerator.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodePathGenerator.java index 264f75c5..1cd38194 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodePathGenerator.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/sourcegenerate/SourceCodePathGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation.sourcegenerate; import com.inspur.edp.web.common.entity.TerminalType; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/AbstractWebDevJsonOperation.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/AbstractWebDevJsonOperation.java index 92930b4f..53b0d261 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/AbstractWebDevJsonOperation.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/AbstractWebDevJsonOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation.webdevjson; import com.inspur.edp.web.frontendproject.zerocode.ZeroCodeFormParameter; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/IWevDevJsonOperation.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/IWevDevJsonOperation.java index badceb36..cc73c6fc 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/IWevDevJsonOperation.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/IWevDevJsonOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation.webdevjson; import com.inspur.edp.web.frontendproject.zerocode.ZeroCodeParameter; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevJsonManager.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevJsonManager.java index 0903d376..d199328c 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevJsonManager.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevJsonManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation.webdevjson; import com.inspur.edp.web.common.entity.TerminalType; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevJsonPathGenerator.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevJsonPathGenerator.java index 9a70866c..2e0dafc1 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevJsonPathGenerator.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevJsonPathGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation.webdevjson; import com.inspur.edp.web.common.entity.TerminalType; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevMobileJsonOperation.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevMobileJsonOperation.java index a3b37d36..cebf97b2 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevMobileJsonOperation.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevMobileJsonOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation.webdevjson; import com.inspur.edp.web.common.entity.TerminalType; diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevPCJson.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevPCJson.java index 3ee4ac11..016a0878 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevPCJson.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevPCJson.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation.webdevjson; public class WebDevPCJson { diff --git a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevPCJsonOperation.java b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevPCJsonOperation.java index 18c7e846..8872cc22 100644 --- a/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevPCJsonOperation.java +++ b/web-frontendproject/src/main/java/com/inspur/edp/web/frontendproject/zerocode/operation/webdevjson/WebDevPCJsonOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.frontendproject.zerocode.operation.webdevjson; import com.inspur.edp.web.common.entity.TerminalType; diff --git a/web-ide-api/pom.xml b/web-ide-api/pom.xml index 220425d9..97494dc2 100644 --- a/web-ide-api/pom.xml +++ b/web-ide-api/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-ide-api/src/main/java/com/inspur/edp/web/ide/api/PluginConfig.java b/web-ide-api/src/main/java/com/inspur/edp/web/ide/api/PluginConfig.java index 8ca16b52..4081ecb7 100644 --- a/web-ide-api/src/main/java/com/inspur/edp/web/ide/api/PluginConfig.java +++ b/web-ide-api/src/main/java/com/inspur/edp/web/ide/api/PluginConfig.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.ide.api; public class PluginConfig diff --git a/web-ide-api/src/main/java/com/inspur/edp/web/ide/api/WebIDEService.java b/web-ide-api/src/main/java/com/inspur/edp/web/ide/api/WebIDEService.java index 520f3ce9..5c49c749 100644 --- a/web-ide-api/src/main/java/com/inspur/edp/web/ide/api/WebIDEService.java +++ b/web-ide-api/src/main/java/com/inspur/edp/web/ide/api/WebIDEService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.ide.api; /** diff --git a/web-ide-webapi/pom.xml b/web-ide-webapi/pom.xml index 17778460..ce103220 100644 --- a/web-ide-webapi/pom.xml +++ b/web-ide-webapi/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/common/FileUtil.java b/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/common/FileUtil.java index 0fdafd2e..05fe1dc6 100644 --- a/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/common/FileUtil.java +++ b/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/common/FileUtil.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.ide.config.webapi.common; import com.inspur.edp.web.common.logger.WebLogger; diff --git a/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/config/WebIdeConfiguration.java b/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/config/WebIdeConfiguration.java index 97f7e51a..d44b82df 100644 --- a/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/config/WebIdeConfiguration.java +++ b/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/config/WebIdeConfiguration.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.ide.config.webapi.config; import com.inspur.edp.ide.config.webapi.control.WebIDEServiceController; diff --git a/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/control/WebIDEServiceController.java b/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/control/WebIDEServiceController.java index 927f702d..0553bc82 100644 --- a/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/control/WebIDEServiceController.java +++ b/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/control/WebIDEServiceController.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.ide.config.webapi.control; import com.inspur.edp.ide.config.webapi.entity.PluginConfig; diff --git a/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/entity/PanelDescription.java b/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/entity/PanelDescription.java index 19221aa1..3b01b872 100644 --- a/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/entity/PanelDescription.java +++ b/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/entity/PanelDescription.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.ide.config.webapi.entity; import lombok.Getter; diff --git a/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/entity/PanelStyle.java b/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/entity/PanelStyle.java index 5ee99b0a..f113637b 100644 --- a/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/entity/PanelStyle.java +++ b/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/entity/PanelStyle.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.ide.config.webapi.entity; /** diff --git a/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/entity/PluginConfig.java b/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/entity/PluginConfig.java index b1c0fbfd..6f08c521 100644 --- a/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/entity/PluginConfig.java +++ b/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/entity/PluginConfig.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.ide.config.webapi.entity; import lombok.Getter; diff --git a/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/service/WebIDEService.java b/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/service/WebIDEService.java index bf6e1b86..dbb8710e 100644 --- a/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/service/WebIDEService.java +++ b/web-ide-webapi/src/main/java/com/inspur/edp/ide/config/webapi/service/WebIDEService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.ide.config.webapi.service; import com.fasterxml.jackson.databind.JsonNode; diff --git a/web-npmpackage-api/pom.xml b/web-npmpackage-api/pom.xml index 77c7e49c..abf57fbe 100644 --- a/web-npmpackage-api/pom.xml +++ b/web-npmpackage-api/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmInstallPackageParameter.java b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmInstallPackageParameter.java index 55fc08b7..b626dd68 100644 --- a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmInstallPackageParameter.java +++ b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmInstallPackageParameter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.api.entity; /** diff --git a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmInstallParameter.java b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmInstallParameter.java index 9707af77..c450bba8 100644 --- a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmInstallParameter.java +++ b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmInstallParameter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.api.entity; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmPackageCheckUpdateOptions.java b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmPackageCheckUpdateOptions.java index e43aa68b..8bd167d8 100644 --- a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmPackageCheckUpdateOptions.java +++ b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmPackageCheckUpdateOptions.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.api.entity; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmPackageConstants.java b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmPackageConstants.java index e3c42403..57d102f4 100644 --- a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmPackageConstants.java +++ b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmPackageConstants.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.api.entity; /** diff --git a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmPackageResponse.java b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmPackageResponse.java index b8876ba2..4c1c5764 100644 --- a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmPackageResponse.java +++ b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmPackageResponse.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.api.entity; /** diff --git a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmPackageResponseLevel.java b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmPackageResponseLevel.java index f5be9e2a..18fd3fc4 100644 --- a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmPackageResponseLevel.java +++ b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/NpmPackageResponseLevel.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.api.entity; /** diff --git a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/packagejson/NpmPackageJsonDependencyInfo.java b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/packagejson/NpmPackageJsonDependencyInfo.java index 25e929c1..b3f140ad 100644 --- a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/packagejson/NpmPackageJsonDependencyInfo.java +++ b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/packagejson/NpmPackageJsonDependencyInfo.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.api.entity.packagejson; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/packagejson/NpmPackageJsonInfo.java b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/packagejson/NpmPackageJsonInfo.java index e7355c95..1bb6e9ed 100644 --- a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/packagejson/NpmPackageJsonInfo.java +++ b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/packagejson/NpmPackageJsonInfo.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.api.entity.packagejson; import java.util.ArrayList; diff --git a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmRepository.java b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmRepository.java index e646fa04..3c72a9e1 100644 --- a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmRepository.java +++ b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmRepository.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.api.entity.settings; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmSettingConfig.java b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmSettingConfig.java index a6752e48..2da7bb95 100644 --- a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmSettingConfig.java +++ b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmSettingConfig.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.api.entity.settings; /** diff --git a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmSettingMode.java b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmSettingMode.java index 06683d36..9a8ff416 100644 --- a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmSettingMode.java +++ b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmSettingMode.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.api.entity.settings; diff --git a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmSettings.java b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmSettings.java index 7b419b2c..64d25bda 100644 --- a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmSettings.java +++ b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmSettings.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.api.entity.settings; import java.util.Arrays; diff --git a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmUpdatePolicy.java b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmUpdatePolicy.java index 0173a646..8d3ceac4 100644 --- a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmUpdatePolicy.java +++ b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/entity/settings/NpmUpdatePolicy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.api.entity.settings; /** diff --git a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/webservice/NpmPackageInstallWebService.java b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/webservice/NpmPackageInstallWebService.java index 7eb2da87..78a08454 100644 --- a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/webservice/NpmPackageInstallWebService.java +++ b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/webservice/NpmPackageInstallWebService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.api.webservice; import com.inspur.edp.web.npmpackage.api.entity.NpmPackageResponse; diff --git a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/webservice/NpmPackagePublishWebService.java b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/webservice/NpmPackagePublishWebService.java index 3df1e637..0d208833 100644 --- a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/webservice/NpmPackagePublishWebService.java +++ b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/webservice/NpmPackagePublishWebService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.api.webservice; /** diff --git a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/webservice/NpmPackageWebService.java b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/webservice/NpmPackageWebService.java index 4b0839e9..0d952fa2 100644 --- a/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/webservice/NpmPackageWebService.java +++ b/web-npmpackage-api/src/main/java/com/inspur/edp/web/npmpackage/api/webservice/NpmPackageWebService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.api.webservice; import com.inspur.edp.web.npmpackage.api.entity.NpmPackageResponse; diff --git a/web-npmpackage-core/pom.xml b/web-npmpackage-core/pom.xml index 598245ec..eee153a0 100644 --- a/web-npmpackage-core/pom.xml +++ b/web-npmpackage-core/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/cacheclean/NpmCacheCleanCommandExecutor.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/cacheclean/NpmCacheCleanCommandExecutor.java index da59608b..1e43633b 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/cacheclean/NpmCacheCleanCommandExecutor.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/cacheclean/NpmCacheCleanCommandExecutor.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.cacheclean; import com.inspur.edp.web.common.entity.NodeJsCommandEnum; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/config/NpmPackageConfiguration.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/config/NpmPackageConfiguration.java index 7507b286..98a1dd15 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/config/NpmPackageConfiguration.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/config/NpmPackageConfiguration.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.config; import com.inspur.edp.web.npmpackage.api.webservice.NpmPackageWebService; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/config/NpmPackageInstallConfiguration.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/config/NpmPackageInstallConfiguration.java index dc8ea3c4..24d46df4 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/config/NpmPackageInstallConfiguration.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/config/NpmPackageInstallConfiguration.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.config; import com.inspur.edp.web.npmpackage.api.webservice.NpmPackageInstallWebService; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NodeModulesPathGenerator.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NodeModulesPathGenerator.java index b44b5f0d..28bb2304 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NodeModulesPathGenerator.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NodeModulesPathGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npminstall; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallCommandExecutor.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallCommandExecutor.java index b3ba0e5a..e940894f 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallCommandExecutor.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallCommandExecutor.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npminstall; import com.inspur.edp.web.common.entity.NodeJsCommandEnum; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallCommandParameterGenerator.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallCommandParameterGenerator.java index 75ad0086..66e14a7c 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallCommandParameterGenerator.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallCommandParameterGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npminstall; import com.inspur.edp.web.common.utility.StringUtility; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallLockFilePathGenerator.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallLockFilePathGenerator.java index 01ffe3f7..c0a8426f 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallLockFilePathGenerator.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallLockFilePathGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npminstall; import com.inspur.edp.web.common.io.FileUtility; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallManager.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallManager.java index 762c4700..c7ac969b 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallManager.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npminstall; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallParameterValidator.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallParameterValidator.java index e72fbfb5..61ea7dc1 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallParameterValidator.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallParameterValidator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npminstall; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallingParameter.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallingParameter.java index 49795e10..64396f8d 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallingParameter.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallingParameter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npminstall; import com.inspur.edp.web.npmpackage.api.entity.NpmInstallParameter; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallingTagManager.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallingTagManager.java index 7b509c2c..ba88400d 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallingTagManager.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmInstallingTagManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npminstall; import com.inspur.edp.web.common.io.FileUtility; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmRepositoryConnection.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmRepositoryConnection.java index 7acb00e2..6d859bda 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmRepositoryConnection.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/NpmRepositoryConnection.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npminstall; import java.net.InetAddress; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/PackageJsonCopyManager.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/PackageJsonCopyManager.java index 679c1e97..e9ab6420 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/PackageJsonCopyManager.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/PackageJsonCopyManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npminstall; import com.inspur.edp.web.common.io.FileUtility; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/PackageJsonPathGenerator.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/PackageJsonPathGenerator.java index 6b1341fa..268db096 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/PackageJsonPathGenerator.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/PackageJsonPathGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npminstall; import com.inspur.edp.web.common.io.FileUtility; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/GlobalNpmDeployPathGenerator.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/GlobalNpmDeployPathGenerator.java index 66a5ea35..8a6b1d0d 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/GlobalNpmDeployPathGenerator.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/GlobalNpmDeployPathGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npminstall.global; import com.inspur.edp.web.common.logger.WebLogger; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/GlobalNpmInstallCommandExecutor.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/GlobalNpmInstallCommandExecutor.java index 09cbc3ab..626a4c9f 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/GlobalNpmInstallCommandExecutor.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/GlobalNpmInstallCommandExecutor.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npminstall.global; import com.inspur.edp.web.common.entity.NodeJsCommandEnum; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/GlobalNpmInstallCommandParameterGenerator.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/GlobalNpmInstallCommandParameterGenerator.java index dcdf0728..b8cdb060 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/GlobalNpmInstallCommandParameterGenerator.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/GlobalNpmInstallCommandParameterGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npminstall.global; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/GlobalPackageJsonPathGenerator.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/GlobalPackageJsonPathGenerator.java index 19bd30e2..0afd9b0f 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/GlobalPackageJsonPathGenerator.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/GlobalPackageJsonPathGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npminstall.global; import com.inspur.edp.web.common.io.FileUtility; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/NpmInstallGlobalManager.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/NpmInstallGlobalManager.java index 1203c9a8..280a68e7 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/NpmInstallGlobalManager.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npminstall/global/NpmInstallGlobalManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npminstall.global; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmlogin/NpmLoginCommandExecutor.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmlogin/NpmLoginCommandExecutor.java index 99715561..816ef608 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmlogin/NpmLoginCommandExecutor.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmlogin/NpmLoginCommandExecutor.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npmlogin; import com.inspur.edp.web.common.entity.NodeJsCommandEnum; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmlogin/NpmLoginCommandParameterGenerator.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmlogin/NpmLoginCommandParameterGenerator.java index 4bf2f53c..1791c950 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmlogin/NpmLoginCommandParameterGenerator.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmlogin/NpmLoginCommandParameterGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npmlogin; import com.inspur.edp.web.npmpackage.api.entity.NpmInstallParameter; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmlogout/NpmLogoutCommandExecutor.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmlogout/NpmLogoutCommandExecutor.java index 9db2d1b3..fe6cd198 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmlogout/NpmLogoutCommandExecutor.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmlogout/NpmLogoutCommandExecutor.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npmlogout; import com.inspur.edp.web.common.entity.NodeJsCommandEnum; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmlogout/NpmLogoutCommandParameterGenerator.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmlogout/NpmLogoutCommandParameterGenerator.java index 1acf07b5..d9ce0eaf 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmlogout/NpmLogoutCommandParameterGenerator.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmlogout/NpmLogoutCommandParameterGenerator.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npmlogout; import com.inspur.edp.web.npmpackage.api.entity.NpmInstallParameter; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmpackagecheck/NpmPackageCheck.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmpackagecheck/NpmPackageCheck.java index 60521903..86b96997 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmpackagecheck/NpmPackageCheck.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmpackagecheck/NpmPackageCheck.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npmpackagecheck; import com.fasterxml.jackson.databind.JsonNode; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingConstant.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingConstant.java index c8ba84e1..0d2711b6 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingConstant.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingConstant.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npmsetting; /** diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingConvertor.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingConvertor.java index 4a7969e7..1e87ecdc 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingConvertor.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingConvertor.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npmsetting; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingEncryptService.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingEncryptService.java index 1dc51eb2..cb9f39b1 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingEncryptService.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingEncryptService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npmsetting; import com.inspur.edp.web.common.serialize.SerializeUtility; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingInitialization.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingInitialization.java index af05eef8..24e41393 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingInitialization.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingInitialization.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npmsetting; import com.inspur.edp.web.npmpackage.api.entity.settings.NpmRepository; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingManager.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingManager.java index 7a0fa288..c517b42f 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingManager.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npmsetting; import com.inspur.edp.web.common.io.NodejsFunctionUtility; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingPathManager.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingPathManager.java index 008048cc..609a6422 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingPathManager.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingPathManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npmsetting; import com.inspur.edp.web.common.io.FileUtility; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingReader.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingReader.java index 2ab29bda..cb6a638f 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingReader.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingReader.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npmsetting; import com.inspur.edp.web.common.io.FileUtility; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingWriter.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingWriter.java index 6d4cd248..d4f8dddb 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingWriter.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/npmsetting/NpmSettingWriter.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.npmsetting; import com.inspur.edp.web.common.io.FileUtility; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/service/NpmPackageInstallService.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/service/NpmPackageInstallService.java index 6ac6df54..17b0de70 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/service/NpmPackageInstallService.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/service/NpmPackageInstallService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.service; import com.inspur.edp.web.npmpackage.api.entity.NpmInstallParameter; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/service/NpmPackageService.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/service/NpmPackageService.java index c0c16214..60333335 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/service/NpmPackageService.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/service/NpmPackageService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.service; import com.inspur.edp.web.common.io.FileUtility; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/webservice/NpmPacakgeWebServiceImpl.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/webservice/NpmPacakgeWebServiceImpl.java index cb3291b6..404f3de4 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/webservice/NpmPacakgeWebServiceImpl.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/webservice/NpmPacakgeWebServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.webservice; import com.inspur.edp.web.common.environment.ExecuteEnvironment; diff --git a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/webservice/NpmPackageInstallWebServiceImpl.java b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/webservice/NpmPackageInstallWebServiceImpl.java index 59052161..697377a8 100644 --- a/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/webservice/NpmPackageInstallWebServiceImpl.java +++ b/web-npmpackage-core/src/main/java/com/inspur/edp/web/npmpackage/core/webservice/NpmPackageInstallWebServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackage.core.webservice; import com.inspur.edp.web.common.utility.CommonUtility; diff --git a/web-npmpackage-patch/pom.xml b/web-npmpackage-patch/pom.xml index 0353a040..93e5e63c 100644 --- a/web-npmpackage-patch/pom.xml +++ b/web-npmpackage-patch/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/FileOperation.java b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/FileOperation.java index 9dc8fbe1..372009fd 100644 --- a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/FileOperation.java +++ b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/FileOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackagepatch; import java.io.*; diff --git a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/MyPropertyNamingStrategy.java b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/MyPropertyNamingStrategy.java index 337aa25b..27af3dd5 100644 --- a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/MyPropertyNamingStrategy.java +++ b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/MyPropertyNamingStrategy.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackagepatch; import com.fasterxml.jackson.databind.PropertyNamingStrategy; diff --git a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/NpmPackagePatchService.java b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/NpmPackagePatchService.java index b339a12a..cb8f809b 100644 --- a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/NpmPackagePatchService.java +++ b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/NpmPackagePatchService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackagepatch; import com.inspur.edp.web.npmpackagepatch.packagejson.PackageJsonInfo; diff --git a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/PackageJsonFileManager.java b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/PackageJsonFileManager.java index 3fdc52ad..4ada5b59 100644 --- a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/PackageJsonFileManager.java +++ b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/PackageJsonFileManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackagepatch; import com.inspur.edp.web.npmpackagepatch.packagejson.PackageJsonDependencyInfo; diff --git a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/PatchConstants.java b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/PatchConstants.java index 7fdb2541..98378ee4 100644 --- a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/PatchConstants.java +++ b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/PatchConstants.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackagepatch; public class PatchConstants { diff --git a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/RescureReadFiles.java b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/RescureReadFiles.java index fe20bf9c..cd7f08a6 100644 --- a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/RescureReadFiles.java +++ b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/RescureReadFiles.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackagepatch; import java.io.File; diff --git a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/SerializePackageJson.java b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/SerializePackageJson.java index f2bb0150..cc7aa816 100644 --- a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/SerializePackageJson.java +++ b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/SerializePackageJson.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackagepatch; import com.fasterxml.jackson.databind.DeserializationFeature; diff --git a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/packagejson/PackageJsonDependencyInfo.java b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/packagejson/PackageJsonDependencyInfo.java index bb6412f5..0a087cc6 100644 --- a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/packagejson/PackageJsonDependencyInfo.java +++ b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/packagejson/PackageJsonDependencyInfo.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackagepatch.packagejson; public class PackageJsonDependencyInfo { diff --git a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/packagejson/PackageJsonInfo.java b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/packagejson/PackageJsonInfo.java index 5e7dffc9..5db62136 100644 --- a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/packagejson/PackageJsonInfo.java +++ b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/packagejson/PackageJsonInfo.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackagepatch.packagejson; import com.inspur.edp.web.npmpackagepatch.packagejson.PackageJsonDependencyInfo; diff --git a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/packagejson/SerializedPackageJson.java b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/packagejson/SerializedPackageJson.java index 36aab1d6..1d5e16d3 100644 --- a/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/packagejson/SerializedPackageJson.java +++ b/web-npmpackage-patch/src/main/java/com/inspur/edp/web/npmpackagepatch/packagejson/SerializedPackageJson.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.npmpackagepatch.packagejson; import java.util.HashMap; diff --git a/web-pageflow-metadata/pom.xml b/web-pageflow-metadata/pom.xml index 9dab0b7d..de910635 100644 --- a/web-pageflow-metadata/pom.xml +++ b/web-pageflow-metadata/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/AdaptedPage.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/AdaptedPage.java index c1b1a821..4ad789a5 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/AdaptedPage.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/AdaptedPage.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.pageflow.metadata.entity; import lombok.Getter; diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/AdaptedPageFlowMetadataEntity.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/AdaptedPageFlowMetadataEntity.java index fda226bf..0eba0efc 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/AdaptedPageFlowMetadataEntity.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/AdaptedPageFlowMetadataEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.pageflow.metadata.entity; import com.inspur.edp.lcm.metadata.api.AbstractMetadataContent; diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/AdaptedPageFlowMetadataEntityService.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/AdaptedPageFlowMetadataEntityService.java index 75f7721f..7001b54e 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/AdaptedPageFlowMetadataEntityService.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/AdaptedPageFlowMetadataEntityService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.pageflow.metadata.entity; import com.inspur.edp.web.common.serialize.SerializeUtility; diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/AdaptedRoute.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/AdaptedRoute.java index ef587623..17c00dc4 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/AdaptedRoute.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/AdaptedRoute.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.pageflow.metadata.entity; import lombok.Getter; diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/Page.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/Page.java index 8e25bac9..f7d971d1 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/Page.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/Page.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.pageflow.metadata.entity; import com.fasterxml.jackson.annotation.JsonIgnore; diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/PageFlowMetadataEntity.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/PageFlowMetadataEntity.java index 81561fb0..c7415732 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/PageFlowMetadataEntity.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/PageFlowMetadataEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.pageflow.metadata.entity; import com.inspur.edp.lcm.metadata.api.AbstractMetadataContent; diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/PageFlowMetadataEntityManager.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/PageFlowMetadataEntityManager.java index 0c8bf073..c4bb778d 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/PageFlowMetadataEntityManager.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/PageFlowMetadataEntityManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.pageflow.metadata.entity; import com.inspur.edp.web.common.serialize.SerializeUtility; diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/PagePublish.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/PagePublish.java index 5c7df296..2d79caf5 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/PagePublish.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/PagePublish.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.pageflow.metadata.entity; public class PagePublish { diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/Project.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/Project.java index bb96af99..934637f7 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/Project.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/Project.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.pageflow.metadata.entity; import lombok.Getter; diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/Route.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/Route.java index ec971eff..b16fabc5 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/Route.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/entity/Route.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.pageflow.metadata.entity; import lombok.Getter; diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/listener/PageFlowMetadataEventListener.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/listener/PageFlowMetadataEventListener.java index 37f08d0d..b49faeb6 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/listener/PageFlowMetadataEventListener.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/listener/PageFlowMetadataEventListener.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.pageflow.metadata.listener; import com.inspur.edp.lcm.metadata.spi.event.MetadataCreateEventListener; diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/manager/PageFlowMetadataEntityManager.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/manager/PageFlowMetadataEntityManager.java index 4436e731..3fa0bde2 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/manager/PageFlowMetadataEntityManager.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/manager/PageFlowMetadataEntityManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.pageflow.metadata.manager; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/serializer/PageFlowMetadataEntitySerializer.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/serializer/PageFlowMetadataEntitySerializer.java index cf907635..92f02d21 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/serializer/PageFlowMetadataEntitySerializer.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/serializer/PageFlowMetadataEntitySerializer.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.pageflow.metadata.serializer; import com.fasterxml.jackson.databind.JsonNode; diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/serializer/PageFlowMetadataTransferSerializer.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/serializer/PageFlowMetadataTransferSerializer.java index fa7a50aa..86b6d9be 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/serializer/PageFlowMetadataTransferSerializer.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/serializer/PageFlowMetadataTransferSerializer.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.pageflow.metadata.serializer; import com.inspur.edp.lcm.metadata.api.IMetadataContent; diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/service/PageFlowMetadataUpdateService.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/service/PageFlowMetadataUpdateService.java index 06e2d977..85ab78a3 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/service/PageFlowMetadataUpdateService.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/service/PageFlowMetadataUpdateService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.pageflow.metadata.service; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/service/RouteMetataService.java b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/service/RouteMetataService.java index 813b1925..503470d4 100644 --- a/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/service/RouteMetataService.java +++ b/web-pageflow-metadata/src/main/java/com/inspur/edp/web/pageflow/metadata/service/RouteMetataService.java @@ -1,19 +1,17 @@ /* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. * - * * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. - * * - * * Licensed 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. + * Licensed 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 com.inspur.edp.web.pageflow.metadata.service; diff --git a/web-sourcecode-metadata/pom.xml b/web-sourcecode-metadata/pom.xml index fb98594c..377db5ab 100644 --- a/web-sourcecode-metadata/pom.xml +++ b/web-sourcecode-metadata/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/entity/RelativePathEnumEntity.java b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/entity/RelativePathEnumEntity.java index cc20e51b..8ab82648 100644 --- a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/entity/RelativePathEnumEntity.java +++ b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/entity/RelativePathEnumEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.sourcecode.metadata.entity; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/entity/SourceCodeItemEntity.java b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/entity/SourceCodeItemEntity.java index 45e3e8d6..d83868c5 100644 --- a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/entity/SourceCodeItemEntity.java +++ b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/entity/SourceCodeItemEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.sourcecode.metadata.entity; /** diff --git a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/entity/SourceCodeMetadataEntity.java b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/entity/SourceCodeMetadataEntity.java index 67008d97..227bd522 100644 --- a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/entity/SourceCodeMetadataEntity.java +++ b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/entity/SourceCodeMetadataEntity.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.sourcecode.metadata.entity; import com.inspur.edp.lcm.metadata.api.AbstractMetadataContent; diff --git a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/listener/SourceCodeMetadataEventListener.java b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/listener/SourceCodeMetadataEventListener.java index 7043b9d5..6f48643e 100644 --- a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/listener/SourceCodeMetadataEventListener.java +++ b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/listener/SourceCodeMetadataEventListener.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.sourcecode.metadata.listener; import com.inspur.edp.lcm.metadata.api.entity.GspProject; diff --git a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/manager/SourceCodeMetadataManager.java b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/manager/SourceCodeMetadataManager.java index 2661f092..99d2442a 100644 --- a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/manager/SourceCodeMetadataManager.java +++ b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/manager/SourceCodeMetadataManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.sourcecode.metadata.manager; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/serializer/SourceCodeMetadataEntitySerializer.java b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/serializer/SourceCodeMetadataEntitySerializer.java index 5507fa2b..4390f3d2 100644 --- a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/serializer/SourceCodeMetadataEntitySerializer.java +++ b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/serializer/SourceCodeMetadataEntitySerializer.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.sourcecode.metadata.serializer; import com.fasterxml.jackson.databind.JsonNode; diff --git a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/serializer/SourceCodeMetadataTransferSerializer.java b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/serializer/SourceCodeMetadataTransferSerializer.java index 927b8333..c3137bc5 100644 --- a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/serializer/SourceCodeMetadataTransferSerializer.java +++ b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/serializer/SourceCodeMetadataTransferSerializer.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.sourcecode.metadata.serializer; import com.inspur.edp.lcm.metadata.api.IMetadataContent; diff --git a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/utility/FileOperationExtensions.java b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/utility/FileOperationExtensions.java index 1d4ded25..083f4e5f 100644 --- a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/utility/FileOperationExtensions.java +++ b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/utility/FileOperationExtensions.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.sourcecode.metadata.utility; import java.util.*; diff --git a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/utility/SourceCodeMetadataUtility.java b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/utility/SourceCodeMetadataUtility.java index 6a6cab6a..f5009a56 100644 --- a/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/utility/SourceCodeMetadataUtility.java +++ b/web-sourcecode-metadata/src/main/java/com/inspur/edp/web/sourcecode/metadata/utility/SourceCodeMetadataUtility.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.sourcecode.metadata.utility; import com.inspur.edp.lcm.metadata.api.entity.MetadataProject; diff --git a/web-statemachine/pom.xml b/web-statemachine/pom.xml index e305e751..2a4ee129 100644 --- a/web-statemachine/pom.xml +++ b/web-statemachine/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-statemachine/src/main/java/com/inspur/edp/web/statemachine/manager/StateMachineMetadataManager.java b/web-statemachine/src/main/java/com/inspur/edp/web/statemachine/manager/StateMachineMetadataManager.java index df6c88c4..bd84d1a2 100644 --- a/web-statemachine/src/main/java/com/inspur/edp/web/statemachine/manager/StateMachineMetadataManager.java +++ b/web-statemachine/src/main/java/com/inspur/edp/web/statemachine/manager/StateMachineMetadataManager.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.statemachine.manager; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-statemachine/src/main/java/com/inspur/edp/web/statemachine/metadata/StateMachineMetadataContent.java b/web-statemachine/src/main/java/com/inspur/edp/web/statemachine/metadata/StateMachineMetadataContent.java index 637bbc3c..784f1328 100644 --- a/web-statemachine/src/main/java/com/inspur/edp/web/statemachine/metadata/StateMachineMetadataContent.java +++ b/web-statemachine/src/main/java/com/inspur/edp/web/statemachine/metadata/StateMachineMetadataContent.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.statemachine.metadata; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/web-statemachine/src/main/java/com/inspur/edp/web/statemachine/serializer/StateMachineSerializer.java b/web-statemachine/src/main/java/com/inspur/edp/web/statemachine/serializer/StateMachineSerializer.java index 412d66a6..78f2d465 100644 --- a/web-statemachine/src/main/java/com/inspur/edp/web/statemachine/serializer/StateMachineSerializer.java +++ b/web-statemachine/src/main/java/com/inspur/edp/web/statemachine/serializer/StateMachineSerializer.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.statemachine.serializer; import com.fasterxml.jackson.databind.JsonNode; diff --git a/web-statemachine/src/main/java/com/inspur/edp/web/statemachine/serializer/StateMachineTransferSerializer.java b/web-statemachine/src/main/java/com/inspur/edp/web/statemachine/serializer/StateMachineTransferSerializer.java index 0e8a72e4..3593000d 100644 --- a/web-statemachine/src/main/java/com/inspur/edp/web/statemachine/serializer/StateMachineTransferSerializer.java +++ b/web-statemachine/src/main/java/com/inspur/edp/web/statemachine/serializer/StateMachineTransferSerializer.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.statemachine.serializer; import com.inspur.edp.lcm.metadata.api.IMetadataContent; diff --git a/web-tsfile-api/pom.xml b/web-tsfile-api/pom.xml index 3ca9054e..a949eaa6 100644 --- a/web-tsfile-api/pom.xml +++ b/web-tsfile-api/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-tsfile-api/src/main/java/com/inspur/edp/web/tsfile/api/entity/FileObject.java b/web-tsfile-api/src/main/java/com/inspur/edp/web/tsfile/api/entity/FileObject.java index 284afffb..a3f6229a 100644 --- a/web-tsfile-api/src/main/java/com/inspur/edp/web/tsfile/api/entity/FileObject.java +++ b/web-tsfile-api/src/main/java/com/inspur/edp/web/tsfile/api/entity/FileObject.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.tsfile.api.entity; /** diff --git a/web-tsfile-api/src/main/java/com/inspur/edp/web/tsfile/api/service/TsFileService.java b/web-tsfile-api/src/main/java/com/inspur/edp/web/tsfile/api/service/TsFileService.java index 8b77485b..63c3d761 100644 --- a/web-tsfile-api/src/main/java/com/inspur/edp/web/tsfile/api/service/TsFileService.java +++ b/web-tsfile-api/src/main/java/com/inspur/edp/web/tsfile/api/service/TsFileService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.tsfile.api.service; import java.util.ArrayList; diff --git a/web-tsfile-api/src/main/java/com/inspur/edp/web/tsfile/api/webservice/TsFileWebService.java b/web-tsfile-api/src/main/java/com/inspur/edp/web/tsfile/api/webservice/TsFileWebService.java index 003beb89..5427fa50 100644 --- a/web-tsfile-api/src/main/java/com/inspur/edp/web/tsfile/api/webservice/TsFileWebService.java +++ b/web-tsfile-api/src/main/java/com/inspur/edp/web/tsfile/api/webservice/TsFileWebService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.tsfile.api.webservice; import com.inspur.edp.web.tsfile.api.entity.FileObject; diff --git a/web-tsfile-core/pom.xml b/web-tsfile-core/pom.xml index 8610ddff..d0f68a05 100644 --- a/web-tsfile-core/pom.xml +++ b/web-tsfile-core/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/TsFileWebServiceImpl.java b/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/TsFileWebServiceImpl.java index 7fbfd330..752fe771 100644 --- a/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/TsFileWebServiceImpl.java +++ b/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/TsFileWebServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.tsfile.core; import com.inspur.edp.web.tsfile.api.entity.FileObject; diff --git a/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/config/TsFileConfiguration.java b/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/config/TsFileConfiguration.java index 3dd61697..b752ae86 100644 --- a/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/config/TsFileConfiguration.java +++ b/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/config/TsFileConfiguration.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.tsfile.core.config; import com.inspur.edp.web.tsfile.api.service.TsFileService; diff --git a/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/service/TsFileService4WebApi.java b/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/service/TsFileService4WebApi.java index dd14cca2..9d9ba6b3 100644 --- a/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/service/TsFileService4WebApi.java +++ b/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/service/TsFileService4WebApi.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.tsfile.core.service; import com.inspur.edp.web.common.io.FileUtility; diff --git a/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/service/TsFileServiceImpl.java b/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/service/TsFileServiceImpl.java index bbb55bfe..91598253 100644 --- a/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/service/TsFileServiceImpl.java +++ b/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/service/TsFileServiceImpl.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.tsfile.core.service; import com.inspur.edp.lcm.metadata.api.entity.GspMetadata; diff --git a/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/util/NameUtil.java b/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/util/NameUtil.java index 31541df3..9adff18b 100644 --- a/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/util/NameUtil.java +++ b/web-tsfile-core/src/main/java/com/inspur/edp/web/tsfile/core/util/NameUtil.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. + * + * Licensed 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 com.inspur.edp.web.tsfile.core.util; public class NameUtil { diff --git a/xpath0.1.bat b/xpath0.1.bat index 630822c9..4b091631 100644 --- a/xpath0.1.bat +++ b/xpath0.1.bat @@ -1,3 +1,19 @@ +# +# Copyright (c) 2020 - present, Inspur Genersoft Co., Ltd. +# +# Licensed 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. +# + @if (@X)==(@Y) @end /* JScript comment @echo off -- Gitee