Package org.dashbuilder.dataset

Examples of org.dashbuilder.dataset.DataSetMetadata


     *
     * @param request The data set lookup request
     * @throws Exception It there is an unexpected error trying to execute the lookup request.
     */
    public void fetchMetadata(final DataSetLookup request, final DataSetMetadataCallback listener) throws Exception {
        DataSetMetadata metadata = clientDataSetManager.lookupDataSetMetadata(request);
        if (metadata != null) {
            listener.callback(metadata);
        }
        else if (dataSetLookupService != null) {
            if (remoteMetadataMap.containsKey(request)) {
View Full Code Here


     *
     * @param request The data set lookup request
     * @throws Exception It there is an unexpected error trying to execute the lookup request.
     */
    public void fetchMetadata(final DataSetLookup request, final DataSetMetadataCallback listener) throws Exception {
        DataSetMetadata metadata = clientDataSetManager.lookupDataSetMetadata(request);
        if (metadata != null) {
            listener.callback(metadata);
        }
        else if (dataSetLookupService != null) {
            if (remoteMetadataMap.containsKey(request)) {
View Full Code Here

TOP

Related Classes of org.dashbuilder.dataset.DataSetMetadata

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.