This commit is contained in:
Lucio Lelii 2018-11-28 15:36:53 +00:00
parent 7ed4fb13f3
commit 7596c477c4
2 changed files with 2 additions and 2 deletions

View File

@ -17,5 +17,5 @@ import lombok.Setter;
public class Metadata {
@MapAttribute(excludeStartWith="jcr:")
Map<String, Object> values = new HashMap<String, Object>();
Map<String, Object> map = new HashMap<String, Object>();
}

View File

@ -72,7 +72,7 @@ public class Item {
Accounting accounting;
@NodeAttribute(value=METADATA_NAME)
Metadata propertyMap = new Metadata();
Metadata metadata = new Metadata();
public String getOwner() {
if (owner!=null) return owner;