Package org.dashbuilder.kpi.client

Source Code of org.dashbuilder.kpi.client.ClientKPIManager

/**
* Copyright (C) 2014 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*       http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.dashbuilder.kpi.client;

import java.util.List;
import java.util.ArrayList;
import javax.enterprise.context.ApplicationScoped;

import org.dashbuilder.dataset.DataSetRef;
import org.dashbuilder.displayer.DisplayerSettings;
import org.dashbuilder.kpi.*;
import org.dashbuilder.kpi.impl.KPIImpl;

@ApplicationScoped
public class ClientKPIManager {

    private List<KPI> kpiList = new ArrayList<KPI>();

    public List<KPI> getAllKPIs() {
        return kpiList;
    }

    public KPI createKPI(DataSetRef dataSetRef, DisplayerSettings displayerSettings ) {
        KPIImpl kpi = new KPIImpl();
        kpi.setDataSetRef(dataSetRef);
        kpi.setDisplayerSettings( displayerSettings );
        return kpi;
    }

    public KPI createKPI(String uuid, DataSetRef dataSetRef, DisplayerSettings displayerSettings ) {
        KPIImpl kpi = new KPIImpl(uuid);
        kpi.setDataSetRef(dataSetRef);
        kpi.setDisplayerSettings( displayerSettings );
        return kpi;
    }

    public KPI addKPI(KPI kpi) {
        kpiList.add(kpi);
        return kpi;
    }

    public KPI getKPI(String uid) {
        for (KPI kpi : kpiList) {
            if (kpi.getUUID().equals(uid)){
                return kpi;
            }
        }
        return null;
    }
}
TOP

Related Classes of org.dashbuilder.kpi.client.ClientKPIManager

TOP
Copyright © 2018 www.massapi.com. 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.