com.yahoo.bard.webservice.web.MetadataObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fili-core Show documentation
Show all versions of fili-core Show documentation
Fili web service library provides core capabilities for RESTful aggregation navigation, query planning and
metadata
// Copyright 2016 Yahoo Inc.
// Licensed under the terms of the Apache license. Please see LICENSE.md file distributed with this work for terms.
package com.yahoo.bard.webservice.web;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* Interface for transforming logical tables into views.
*/
public class MetadataObject extends LinkedHashMap {
/**
* Constructor.
*/
public MetadataObject() {
super();
}
/**
* Constructor.
*
* @param copy A collection of metadata to duplicate.
*/
public MetadataObject(Map copy) {
super(copy);
}
/**
* Constructor.
*
* @param key Initial key with which to populate the map
* @param value Initial value with which to populate the map
*/
public MetadataObject(String key, Object value) {
this.put(key, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy