nonanalou commented on code in PR #28:
URL: 
https://github.com/apache/sling-org-apache-sling-xss/pull/28#discussion_r941281851


##########
src/main/java/org/apache/sling/xss/impl/xml/Property.java:
##########
@@ -0,0 +1,123 @@
+/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ ~ Licensed to the Apache Software Foundation (ASF) under one
+ ~ or more contributor license agreements.  See the NOTICE file
+ ~ distributed with this work for additional information
+ ~ regarding copyright ownership.  The ASF licenses this file
+ ~ to you under the Apache License, Version 2.0 (the
+ ~ "License"); you may not use this file except in compliance
+ ~ with the License.  You may obtain a copy of the License at
+ ~
+ ~   http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing,
+ ~ software distributed under the License is distributed on an
+ ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ ~ KIND, either express or implied.  See the License for the
+ ~ specific language governing permissions and limitations
+ ~ under the License.
+ 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
+package org.apache.sling.xss.impl.xml;
+
+import java.util.Collections;
+import java.util.List;
+import java.util.regex.Pattern;
+import java.util.stream.Collectors;
+
+import com.fasterxml.jackson.annotation.JsonCreator;
+import 
com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper;
+import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
+
+public class Property {
+    private String name;
+    private String description;
+    private String defaultValue;
+
+    @JacksonXmlElementWrapper(localName = "regexp-list")
+    private List<Regexp> regexpList;
+
+    @JacksonXmlElementWrapper(localName = "literal-list")
+    private List<Literal> literalList;
+
+    @JacksonXmlElementWrapper(localName = "category-list")
+    private List<Category> categoryList;
+
+    @JacksonXmlElementWrapper(localName = "shorthand-list")
+    private List<Shorthand> shorthandList;
+
+    private String onInvalid;
+
+    @JsonCreator
+    public Property(@JacksonXmlProperty(localName = "name", isAttribute = 
true) String name,
+            @JacksonXmlProperty(localName = "regexp") List<Regexp> 
allowedRegexp3,
+            @JacksonXmlProperty(localName = "literal") List<Literal> 
allowedValue,
+            @JacksonXmlProperty(localName = "shorthand") List<Shorthand> 
shortHandRefs,
+            @JacksonXmlProperty(localName = "description", isAttribute = true) 
String description,
+            @JacksonXmlProperty(localName = "onInvalid", isAttribute = true) 
String onInvalidStr,
+            @JacksonXmlProperty(isAttribute = true, localName = "default") 
String defaultValue) {
+
+        this.name = name;
+        this.description = description;
+        this.onInvalid = onInvalidStr;
+        this.regexpList = allowedRegexp3;
+        this.literalList = allowedValue;
+        this.shorthandList = shortHandRefs;
+        this.defaultValue = defaultValue;
+    }
+
+    public List<Category> getCategoryList() {
+        return categoryList;
+    }
+
+    public String getDefaultValue() {
+        return defaultValue;
+    }
+
+    public String getDescription() {
+        return description;
+    }
+
+    public List<Literal> getLiteralList() {
+        return literalList;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public List<Regexp> getRegexpList() {
+        return regexpList;
+    }
+
+    public List<Shorthand> getShorthandList() {
+        return shorthandList;
+    }
+
+    public List<String> getShorthands() {
+        // reads out the shorthands and creats a list out of it
+
+        return shorthandList != null ? shorthandList.stream().map(shorthand -> 
shorthand.getName())
+                .collect(Collectors.toList()) : Collections.emptyList();
+    }
+
+    public List<String> getLiterals() {
+        // reads out the literals and creats a list out of it
+        return literalList.stream().map(literal -> literal.getValue())
+                .collect(Collectors.toList());
+    }
+
+    public String getOnInvalid() {
+        if (onInvalid != null && onInvalid.length() > 0) {

Review Comment:
   Resolved: 7d9e82449f514b2fce6ba4c3aa4ec0df70daf8bb



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@sling.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to