PendingDevice.java
911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* javax.annotation.CheckForNull
* javax.annotation.Nonnull
* org.apache.sling.commons.json.JSONObject
*/
package com.adobe.cq.screens.device.registration;
import com.adobe.cq.screens.device.registration.RegistrationResult;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
import org.apache.sling.commons.json.JSONObject;
public interface PendingDevice {
@Nonnull
public String getToken();
@Nonnull
public State getState();
@CheckForNull
public String getRegistrationCode();
@Nonnull
public JSONObject getMetadata();
@CheckForNull
public RegistrationResult getRegistrationResult();
public static enum State {
UNREGISTERED,
PREREGISTRATION,
REGISTRATION,
REGISTERED;
private State() {
}
}
}