Package org.fedoraproject.Config.Services

Examples of org.fedoraproject.Config.Services.ServiceHerder


    public List<String> listXinetdServices(DBusConnection conn) throws DBusException {
        return listServices(conn, "/org/fedoraproject/Config/Services/ServiceHerders/XinetdServiceHerder");
    }

    private List<String> listServices(DBusConnection conn, String herderPath) throws DBusException {
        ServiceHerder herder = (ServiceHerder) conn.getRemoteObject(Service.BUS_NAME, herderPath, ServiceHerder.class);
        return Arrays.asList(herder.list_services());
    }
View Full Code Here

TOP

Related Classes of org.fedoraproject.Config.Services.ServiceHerder

Copyright © 2018 www.massapicom. 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.