com.epam.deltix.qsrv.hf.pub.md.Attributes Maven / Gradle / Ivy
/*
* Copyright 2023 EPAM Systems, Inc
*
* See the NOTICE file distributed with this work for additional information
* regarding copyright ownership. Licensed 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 com.epam.deltix.qsrv.hf.pub.md;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.adapters.XmlAdapter;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
/**
* Attribute definition for the DataFields.
*/
public class Attributes {
@XmlElement(name = "item")
public ArrayList items = new ArrayList<>();
public Attributes(ArrayList items) {
this.items = items;
}
public Attributes() { // JAXB
}
public void clear() {
items = new ArrayList<>();
}
}
class MapItem {
@XmlElement()
public String name;
@XmlElement()
public String value;
private MapItem() { } //Required by JAXB
public MapItem(String name, String value) {
this.name = name;
this.value = value;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
class MapAdapter extends XmlAdapter> {
public MapAdapter() {
}
public MapItem[] marshal(Map map) throws Exception {
MapItem[] mapElements = null;
if (map != null) {
mapElements = new MapItem[map.size()];
int i = 0;
for (Map.Entry entry : map.entrySet())
mapElements[i++] = new MapItem(entry.getKey(), entry.getValue());
}
return mapElements;
}
public Map unmarshal(MapItem[] elements) throws Exception {
Map map = null;
if (elements != null) {
map = new HashMap<>();
for (MapItem e : elements)
map.put(e.name, e.value);
}
return map;
}
}