DeviceStatus.java 548 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 */
package com.adobe.cq.screens.device;

import aQute.bnd.annotation.ProviderType;

@ProviderType
public interface DeviceStatus {
    public Ping getLastPing();

    public Firmware getFirmware();

    @ProviderType
    public static interface Firmware {
        public String getVersion();

        public long getLastUpdated();
    }

    @ProviderType
    public static interface Ping {
        public long getTime();
    }

}