DPSConnection.java
1.31 KB
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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ProviderType
* com.adobe.dps.client.authorization.AuthorizationDao
* com.adobe.dps.client.producer.ContentProducerDAO
* com.adobe.dps.client.producer.EntityProducerDAO
* com.adobe.dps.client.producer.api.ProducerApi
* com.adobe.dps.client.producer.utils.AccessToken
* com.adobe.dps.client.producer.utils.Session
*/
package com.adobe.cq.mobile.dps.impl;
import aQute.bnd.annotation.ProviderType;
import com.adobe.cq.mobile.dps.DPSException;
import com.adobe.dps.client.authorization.AuthorizationDao;
import com.adobe.dps.client.producer.ContentProducerDAO;
import com.adobe.dps.client.producer.EntityProducerDAO;
import com.adobe.dps.client.producer.api.ProducerApi;
import com.adobe.dps.client.producer.utils.AccessToken;
import com.adobe.dps.client.producer.utils.Session;
@ProviderType
public interface DPSConnection {
public ContentProducerDAO getContentAccess() throws DPSException;
public EntityProducerDAO getEntityAccess() throws DPSException;
public ProducerApi getProducerAPI(String var1) throws DPSException;
public AccessToken getAccessToken() throws DPSException;
public AuthorizationDao getAuthorizationAccess() throws DPSException;
public Session getSession() throws DPSException;
}