Examples of BAMGlobalConfigAdmin


Examples of org.wso2.carbon.bam.core.admin.BAMGlobalConfigAdmin

    }

    public TimeRange getDataRetentionPeriod() throws BAMException {
        TimeRange retention;

        BAMGlobalConfigAdmin configAdmin = new BAMGlobalConfigAdmin(getRegistry());
        try {
            retention = configAdmin.getDataRetentionPeriod();
        } catch (BAMException e) {
            throw new BAMException("Error occurred getting data retention period", e);
        }

        // If the data retention period is not specified or incorrect, use
View Full Code Here

Examples of org.wso2.carbon.bam.core.admin.BAMGlobalConfigAdmin

        return retention;
    }

    public TimeRange getDataArchivalPeriod() throws BAMException {
        TimeRange retention;
        BAMGlobalConfigAdmin configAdmin = new BAMGlobalConfigAdmin(getRegistry());

        try {
            retention = configAdmin.getDataArchivalPeriod();
        } catch (BAMException e) {
            throw new BAMException("Error occurred getting data archive period", e);
        }
        // If the data retention period is not specified or incorrect, use
        // one day as default
View Full Code Here

Examples of org.wso2.carbon.bam.core.admin.BAMGlobalConfigAdmin

        }
        return retention;
    }

    public void updateDataRetentionPeriod(TimeRange tr) throws BAMException {
        BAMGlobalConfigAdmin configAdmin = new BAMGlobalConfigAdmin(getRegistry());
        configAdmin.updateDataRetentionPeriod(tr);
    }
View Full Code Here

Examples of org.wso2.carbon.bam.core.admin.BAMGlobalConfigAdmin

        BAMGlobalConfigAdmin configAdmin = new BAMGlobalConfigAdmin(getRegistry());
        configAdmin.updateDataRetentionPeriod(tr);
    }

    public void updateDataArchivalPeriod(TimeRange tr) throws BAMException {
        BAMGlobalConfigAdmin configAdmin = new BAMGlobalConfigAdmin(getRegistry());
        configAdmin.updateDataArchivalPeriod(tr);
    }
View Full Code Here
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.