You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by sk...@apache.org on 2019/10/31 13:30:24 UTC

[syncope] branch 2_1_X updated: [SYNCOPE-957] Removed useless annotations

This is an automated email from the ASF dual-hosted git repository.

skylark17 pushed a commit to branch 2_1_X
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/2_1_X by this push:
     new 7df8e1f  [SYNCOPE-957] Removed useless annotations
7df8e1f is described below

commit 7df8e1f21bd5466e3ed552130367fdd2e4e36b23
Author: Matteo Alessandroni <ma...@tirasa.net>
AuthorDate: Thu Oct 31 14:30:00 2019 +0100

    [SYNCOPE-957] Removed useless annotations
---
 .../client/console/commons/LinkedAccountPlainAttrProperty.java    | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/client/console/src/main/java/org/apache/syncope/client/console/commons/LinkedAccountPlainAttrProperty.java b/client/console/src/main/java/org/apache/syncope/client/console/commons/LinkedAccountPlainAttrProperty.java
index 3f0468a..2826405 100644
--- a/client/console/src/main/java/org/apache/syncope/client/console/commons/LinkedAccountPlainAttrProperty.java
+++ b/client/console/src/main/java/org/apache/syncope/client/console/commons/LinkedAccountPlainAttrProperty.java
@@ -22,16 +22,10 @@ import com.fasterxml.jackson.annotation.JsonProperty;
 import java.io.Serializable;
 import java.util.ArrayList;
 import java.util.List;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlElementWrapper;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
 import org.apache.commons.lang3.ObjectUtils;
 import org.apache.commons.lang3.builder.EqualsBuilder;
 import org.apache.commons.lang3.builder.HashCodeBuilder;
 
-@XmlRootElement
-@XmlType
 public class LinkedAccountPlainAttrProperty implements Serializable, Comparable<LinkedAccountPlainAttrProperty> {
 
     private static final long serialVersionUID = -5309050337675968950L;
@@ -50,8 +44,6 @@ public class LinkedAccountPlainAttrProperty implements Serializable, Comparable<
         this.schema = schema;
     }
 
-    @XmlElementWrapper(name = "values")
-    @XmlElement(name = "value")
     @JsonProperty("values")
     public List<String> getValues() {
         return values;