org.bml.util.rt.telemetry.RTTelemetryConfig.java Source code

Java tutorial

Introduction

Here is the source code for org.bml.util.rt.telemetry.RTTelemetryConfig.java

Source

package org.bml.util.rt.telemetry;

/*
 * #%L
 * org.bml
 * %%
 * Copyright (C) 2006 - 2014 Brian M. Lima
 * %%
 * This file is part of ORG.BML.
 * 
 *     ORG.BML is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU General Public License as published by
 *     the Free Software Foundation, either version 3 of the License, or
 *     (at your option) any later version.
 * 
 *     ORG.BML is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     GNU Lesser General Public License for more details.
 * 
 *     You should have received a copy of the GNU Lesser General Public License
 *     along with ORG.BML.  If not, see <http://www.gnu.org/licenses/>.
 * #L%
 */

import java.util.Properties;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

/**
 * @author Brian M. Lima
 */
public class RTTelemetryConfig extends Properties {
    /** standard commons Logging */
    private static final Log LOG = LogFactory.getLog(RTTelemetryConfig.class);

    static enum KEYS {
        SYNC_RATE,
    }

}