Device.java
680 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ProviderType
* javax.annotation.CheckForNull
* javax.annotation.Nonnull
* org.apache.sling.api.adapter.Adaptable
*/
package com.adobe.cq.screens.device;
import aQute.bnd.annotation.ProviderType;
import com.adobe.cq.screens.device.DeviceConfig;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
import org.apache.sling.api.adapter.Adaptable;
@ProviderType
public interface Device
extends Adaptable {
@Nonnull
public String getPath();
@Nonnull
public String getId();
@CheckForNull
public DeviceConfig getDeviceConfig();
}