RegistrationService.java
731 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ProviderType
* javax.annotation.CheckForNull
* javax.annotation.Nonnull
* javax.annotation.Nullable
*/
package com.adobe.cq.screens.device.registration;
import aQute.bnd.annotation.ProviderType;
import com.adobe.cq.screens.device.registration.PendingDevice;
import java.util.Iterator;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
@ProviderType
public interface RegistrationService {
@CheckForNull
public PendingDevice getDevice(@Nonnull String var1);
@Nonnull
public Iterator<PendingDevice> getDevices(@Nullable PendingDevice.State var1);
}