com.solidfire.core.client.Attributes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solidfire-sdk-java Show documentation
Show all versions of solidfire-sdk-java Show documentation
Library for interfacing with the Public and Incubating SolidFire Element API.
The newest version!
package com.solidfire.core.client;
import java.util.HashMap;
import java.util.Map;
public class Attributes extends HashMap {
public static final long serialVersionUID = 6182745512723579971L;
public Attributes(Map tree){
this.putAll(tree);
}
public Attributes(){}
}