All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.iarellano.rest_client.extract.xml.ExtractXml Maven / Gradle / Ivy

package com.github.iarellano.rest_client.extract.xml;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class ExtractXml {

    private Map namespaces = new HashMap<>();

    private List properties = new ArrayList<>();

    public Map getNamespaces() {
        return namespaces;
    }

    public void setNamespaces(Map namespaces) {
        this.namespaces = namespaces;
    }

    public List getProperties() {
        return properties;
    }

    public void setProperties(List properties) {
        this.properties = properties;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy