Skip to content

Commit

Permalink
MARP-1699 Remove property persistent of HTML Dialog data class attrib…
Browse files Browse the repository at this point in the history
…utes (#31)
  • Loading branch information
phhung-axonivy authored Dec 23, 2024
1 parent 5ac564a commit fbce2ab
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 38 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@
"isBusinessCaseData" : false,
"fields" : [ {
"name" : "id",
"type" : "String",
"modifiers" : [ "PERSISTENT" ]
"type" : "String"
}, {
"name" : "product",
"type" : "com.axonivy.demo.masterdetail.entity.Product",
"modifiers" : [ "PERSISTENT" ]
"type" : "com.axonivy.demo.masterdetail.entity.Product"
} ]
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,71 +5,54 @@
"isBusinessCaseData" : false,
"fields" : [ {
"name" : "copyValid",
"type" : "Boolean",
"modifiers" : [ "PERSISTENT" ]
"type" : "Boolean"
}, {
"name" : "editedRowKey",
"type" : "String",
"modifiers" : [ "PERSISTENT" ]
"type" : "String"
}, {
"name" : "field",
"type" : "String",
"modifiers" : [ "PERSISTENT" ]
"type" : "String"
}, {
"name" : "isProfileAdmin",
"type" : "Boolean",
"modifiers" : [ "PERSISTENT" ]
"type" : "Boolean"
}, {
"name" : "newObjects",
"type" : "List<java.lang.Object>",
"modifiers" : [ "PERSISTENT" ]
"type" : "List<java.lang.Object>"
}, {
"name" : "numberOfCopies",
"type" : "Integer",
"modifiers" : [ "PERSISTENT" ]
"type" : "Integer"
}, {
"name" : "privateProfiles",
"type" : "java.util.List<com.axonivy.demo.masterdetail.entity.Profile>",
"modifiers" : [ "PERSISTENT" ]
"type" : "java.util.List<com.axonivy.demo.masterdetail.entity.Profile>"
}, {
"name" : "publicProfiles",
"type" : "java.util.List<com.axonivy.demo.masterdetail.entity.Profile>",
"modifiers" : [ "PERSISTENT" ]
"type" : "java.util.List<com.axonivy.demo.masterdetail.entity.Profile>"
}, {
"name" : "selectedProduct",
"type" : "java.util.List<com.axonivy.demo.masterdetail.entity.Product>",
"modifiers" : [ "PERSISTENT" ]
"type" : "java.util.List<com.axonivy.demo.masterdetail.entity.Product>"
}, {
"name" : "selectedProfile",
"type" : "com.axonivy.demo.masterdetail.entity.Profile",
"modifiers" : [ "PERSISTENT" ]
"type" : "com.axonivy.demo.masterdetail.entity.Profile"
}, {
"name" : "streamedContent",
"type" : "org.primefaces.model.DefaultStreamedContent",
"modifiers" : [ "PERSISTENT" ]
"type" : "org.primefaces.model.DefaultStreamedContent"
}, {
"name" : "tableRows",
"type" : "Integer",
"modifiers" : [ "PERSISTENT" ]
"type" : "Integer"
}, {
"name" : "stateDataTableBean",
"type" : "com.axonivy.demo.masterdetail.ui.StateDataTableBean",
"modifiers" : [ "PERSISTENT" ]
"type" : "com.axonivy.demo.masterdetail.ui.StateDataTableBean"
}, {
"name" : "multiChangeState",
"type" : "com.axonivy.demo.masterdetail.enums.ProductStatus",
"modifiers" : [ "PERSISTENT" ]
"type" : "com.axonivy.demo.masterdetail.enums.ProductStatus"
}, {
"name" : "product",
"type" : "com.axonivy.demo.masterdetail.entity.Product",
"modifiers" : [ "PERSISTENT" ]
"type" : "com.axonivy.demo.masterdetail.entity.Product"
}, {
"name" : "readOnly",
"type" : "Boolean",
"modifiers" : [ "PERSISTENT" ]
"type" : "Boolean"
}, {
"name" : "selectedProductID",
"type" : "String",
"modifiers" : [ "PERSISTENT" ]
"type" : "String"
} ]
}

0 comments on commit fbce2ab

Please sign in to comment.