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

com.capitalone.dashboard.model.WidgetResponse Maven / Gradle / Ivy

There is a newer version: 3.4.53
Show newest version
package com.capitalone.dashboard.model;

public class WidgetResponse {
    private final Component component;
    private final Widget widget;

    public WidgetResponse(Component component, Widget widget) {
        this.component = component;
        this.widget = widget;
    }

    public Component getComponent() {
        return component;
    }

    public Widget getWidget() {
        return widget;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy