org.diirt.datasource.sys.SystemDataSourceProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datasource-sys Show documentation
Show all versions of datasource-sys Show documentation
Support for system information data source.
/**
* Copyright (C) 2010-14 diirt developers. See COPYRIGHT.TXT
* All rights reserved. Use is subject to license terms. See LICENSE.TXT
*/
package org.diirt.datasource.sys;
import org.diirt.datasource.DataSource;
import org.diirt.datasource.DataSourceProvider;
/**
* DataSourceProvider for system information.
*
* @author carcassi
*/
public class SystemDataSourceProvider extends DataSourceProvider {
@Override
public String getName() {
return "sys";
}
@Override
public DataSource createInstance() {
return new SystemDataSource();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy