-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e520129
commit abb96fe
Showing
44 changed files
with
127 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
3 changes: 1 addition & 2 deletions
3
alfresco-connector-demo/.settings/ch.ivyteam.ivy.designer.prefs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
ch.ivyteam.ivy.designer.preferences.DataClassPreferencePage\:DEFAULT_DATA_CLASS=com.alfresco.connector.demo.Data | ||
ch.ivyteam.ivy.designer.preferences.DataClassPreferencePage\:DEFAULT_NAMESPACE=com.alfresco.connector.demo | ||
ch.ivyteam.ivy.designer.preferences.DataClassPreferencePage\:useProjectSettings=true | ||
ch.ivyteam.ivy.project.preferences\:PRIMEFACES_VERSION=13 | ||
ch.ivyteam.ivy.project.preferences\:PROJECT_VERSION=113000 | ||
ch.ivyteam.ivy.project.preferences\:PROJECT_VERSION=120001 | ||
eclipse.preferences.version=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 2 additions & 4 deletions
6
alfresco-connector-demo/.settings/org.eclipse.wst.common.project.facet.core.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<faceted-project> | ||
<fixed facet="wst.jsdt.web"/> | ||
<installed facet="jst.web" version="3.0"/> | ||
<installed facet="wst.jsdt.web" version="1.0"/> | ||
<installed facet="jst.jsf" version="2.1"/> | ||
<installed facet="java" version="17"/> | ||
</faceted-project> | ||
<installed facet="java" version="21"/> | ||
</faceted-project> |
1 change: 0 additions & 1 deletion
1
alfresco-connector-demo/.settings/org.eclipse.wst.jsdt.ui.superType.container
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
alfresco-connector-demo/.settings/org.eclipse.wst.jsdt.ui.superType.name
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# yaml-language-server: $schema=https://json-schema.axonivy.com/app/12.0.0/variables.json | ||
Variables: |
6 changes: 6 additions & 0 deletions
6
alfresco-connector-demo/dataclasses/com/alfresco/connector/demo/Data.d.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"$schema" : "https://json-schema.axonivy.com/data-class/12.0.0/data-class.json", | ||
"simpleName" : "Data", | ||
"namespace" : "com.alfresco.connector.demo", | ||
"isBusinessCaseData" : false | ||
} |
2 changes: 0 additions & 2 deletions
2
alfresco-connector-demo/dataclasses/com/alfresco/connector/demo/Data.ivyClass
This file was deleted.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
alfresco-connector-demo/dataclasses/com/alfresco/connector/demo/Folder.d.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"$schema" : "https://json-schema.axonivy.com/data-class/12.0.0/data-class.json", | ||
"simpleName" : "Folder", | ||
"namespace" : "com.alfresco.connector.demo", | ||
"isBusinessCaseData" : false, | ||
"fields" : [ { | ||
"name" : "name", | ||
"type" : "String", | ||
"modifiers" : [ "PERSISTENT" ] | ||
}, { | ||
"name" : "id", | ||
"type" : "String", | ||
"modifiers" : [ "PERSISTENT" ] | ||
} ] | ||
} |
6 changes: 0 additions & 6 deletions
6
alfresco-connector-demo/dataclasses/com/alfresco/connector/demo/Folder.ivyClass
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
alfresco-connector-demo/dataclasses/com/alfresco/connector/demo/ReadDocumentsData.d.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"$schema" : "https://json-schema.axonivy.com/data-class/12.0.0/data-class.json", | ||
"simpleName" : "ReadDocumentsData", | ||
"namespace" : "com.alfresco.connector.demo", | ||
"isBusinessCaseData" : false, | ||
"fields" : [ { | ||
"name" : "connectionError", | ||
"type" : "String", | ||
"modifiers" : [ "PERSISTENT" ] | ||
}, { | ||
"name" : "documents", | ||
"type" : "List<com.alfresco.api.explorer.NodeChildAssociationEntry>", | ||
"modifiers" : [ "PERSISTENT" ] | ||
}, { | ||
"name" : "folderid", | ||
"type" : "String", | ||
"modifiers" : [ "PERSISTENT" ] | ||
} ] | ||
} |
8 changes: 0 additions & 8 deletions
8
alfresco-connector-demo/dataclasses/com/alfresco/connector/demo/ReadDocumentsData.ivyClass
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
alfresco-connector-demo/processes/AlfrescoDemo/readDocuments.p.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 0 additions & 7 deletions
7
alfresco-connector-demo/src_hd/com/alfresco/connector/demo/ecm/ecm.rddescriptor
This file was deleted.
Oops, something went wrong.
39 changes: 39 additions & 0 deletions
39
alfresco-connector-demo/src_hd/com/alfresco/connector/demo/ecm/ecmData.d.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"$schema" : "https://json-schema.axonivy.com/data-class/12.0.0/data-class.json", | ||
"simpleName" : "ecmData", | ||
"namespace" : "com.alfresco.connector.demo.ecm", | ||
"isBusinessCaseData" : false, | ||
"fields" : [ { | ||
"name" : "documents", | ||
"type" : "List<com.alfresco.api.explorer.NodeChildAssociationEntry>", | ||
"modifiers" : [ "PERSISTENT" ] | ||
}, { | ||
"name" : "file", | ||
"type" : "File", | ||
"modifiers" : [ "PERSISTENT" ] | ||
}, { | ||
"name" : "folderid", | ||
"type" : "String", | ||
"modifiers" : [ "PERSISTENT" ] | ||
}, { | ||
"name" : "connectionError", | ||
"type" : "String", | ||
"modifiers" : [ "PERSISTENT" ] | ||
}, { | ||
"name" : "comment", | ||
"type" : "String", | ||
"modifiers" : [ "PERSISTENT" ] | ||
}, { | ||
"name" : "foldername", | ||
"type" : "String", | ||
"modifiers" : [ "PERSISTENT" ] | ||
}, { | ||
"name" : "newFoldername", | ||
"type" : "String", | ||
"modifiers" : [ "PERSISTENT" ] | ||
}, { | ||
"name" : "folder", | ||
"type" : "List<com.alfresco.connector.demo.Folder>", | ||
"modifiers" : [ "PERSISTENT" ] | ||
} ] | ||
} |
18 changes: 0 additions & 18 deletions
18
alfresco-connector-demo/src_hd/com/alfresco/connector/demo/ecm/ecmData.ivyClass
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
alfresco-connector-demo/src_hd/com/alfresco/connector/demo/ecm/ecmProcess.p.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
3 changes: 1 addition & 2 deletions
3
alfresco-connector-test/.settings/ch.ivyteam.ivy.designer.prefs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
ch.ivyteam.ivy.designer.preferences.DataClassPreferencePage\:DEFAULT_DATA_CLASS=alfresco.ecm.connector.test.Data | ||
ch.ivyteam.ivy.designer.preferences.DataClassPreferencePage\:DEFAULT_NAMESPACE=alfresco.ecm.connector.test | ||
ch.ivyteam.ivy.project.preferences\:PRIMEFACES_VERSION=13 | ||
ch.ivyteam.ivy.project.preferences\:PROJECT_VERSION=113000 | ||
ch.ivyteam.ivy.project.preferences\:PROJECT_VERSION=120001 | ||
eclipse.preferences.version=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 | ||
org.eclipse.jdt.core.compiler.compliance=17 | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=21 | ||
org.eclipse.jdt.core.compiler.compliance=21 | ||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error | ||
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled | ||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | ||
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning | ||
org.eclipse.jdt.core.compiler.release=enabled | ||
org.eclipse.jdt.core.compiler.source=17 | ||
org.eclipse.jdt.core.compiler.source=21 |
6 changes: 2 additions & 4 deletions
6
alfresco-connector-test/.settings/org.eclipse.wst.common.project.facet.core.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<faceted-project> | ||
<fixed facet="wst.jsdt.web"/> | ||
<installed facet="java" version="17"/> | ||
<installed facet="java" version="21"/> | ||
<installed facet="jst.web" version="3.0"/> | ||
<installed facet="wst.jsdt.web" version="1.0"/> | ||
<installed facet="jst.jsf" version="2.1"/> | ||
</faceted-project> | ||
</faceted-project> |
1 change: 0 additions & 1 deletion
1
alfresco-connector-test/.settings/org.eclipse.wst.jsdt.ui.superType.container
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
alfresco-connector-test/.settings/org.eclipse.wst.jsdt.ui.superType.name
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# yaml-language-server: $schema=https://json-schema.axonivy.com/app/11.4.1/variables.json | ||
# yaml-language-server: $schema=https://json-schema.axonivy.com/app/12.0.0/variables.json | ||
Variables: |
6 changes: 6 additions & 0 deletions
6
alfresco-connector-test/dataclasses/alfresco/ecm/connector/test/Data.d.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"$schema" : "https://json-schema.axonivy.com/data-class/12.0.0/data-class.json", | ||
"simpleName" : "Data", | ||
"namespace" : "alfresco.ecm.connector.test", | ||
"isBusinessCaseData" : false | ||
} |
2 changes: 0 additions & 2 deletions
2
alfresco-connector-test/dataclasses/alfresco/ecm/connector/test/Data.ivyClass
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
ch.ivyteam.ivy.designer.preferences.DataClassPreferencePage\:DEFAULT_DATA_CLASS=com.alfresco.connector.Data | ||
ch.ivyteam.ivy.designer.preferences.DataClassPreferencePage\:DEFAULT_NAMESPACE=com.alfresco.connector.demo | ||
ch.ivyteam.ivy.designer.preferences.DataClassPreferencePage\:useProjectSettings=true | ||
ch.ivyteam.ivy.project.preferences\:PRIMEFACES_VERSION=13 | ||
ch.ivyteam.ivy.project.preferences\:PROJECT_VERSION=113000 | ||
ch.ivyteam.ivy.project.preferences\:PROJECT_VERSION=120001 | ||
eclipse.preferences.version=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 2 additions & 4 deletions
6
alfresco-connector/.settings/org.eclipse.wst.common.project.facet.core.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<faceted-project> | ||
<fixed facet="wst.jsdt.web"/> | ||
<installed facet="jst.web" version="3.0"/> | ||
<installed facet="wst.jsdt.web" version="1.0"/> | ||
<installed facet="jst.jsf" version="2.1"/> | ||
<installed facet="java" version="17"/> | ||
</faceted-project> | ||
<installed facet="java" version="21"/> | ||
</faceted-project> |
1 change: 0 additions & 1 deletion
1
alfresco-connector/.settings/org.eclipse.wst.jsdt.ui.superType.container
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
alfresco-connector/.settings/org.eclipse.wst.jsdt.ui.superType.name
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.