GuideLibraryProviderImpl.java
1.41 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
39
40
41
42
43
44
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* org.apache.felix.scr.annotations.Component
* org.apache.felix.scr.annotations.Service
*/
package com.adobe.aemds.guide.service.impl;
import com.adobe.aemds.guide.service.GuideException;
import com.adobe.aemds.guide.service.GuideLibraryProvider;
import javax.annotation.Resource;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Service;
@Component(immediate=1, metatype=0)
@Service(value={GuideLibraryProvider.class})
public class GuideLibraryProviderImpl
implements GuideLibraryProvider {
public String getPanelJson(Resource fragmentPanel, Resource containerResource) throws GuideException {
return null;
}
public String getFormJson(Resource containerToBeLoaded, Resource parentContainerResource) throws GuideException {
return null;
}
public String getPanelHTML(Resource fragmentPanel, Resource containerResource) throws GuideException {
return null;
}
public String getFormHTML(Resource containerToBeLoaded, Resource parentContainerResource) throws GuideException {
return null;
}
public String getJsonForAllOnDemandResources(Resource containerResource) throws GuideException {
return null;
}
public String getHTMLForAllOnDemandResources(Resource containerResource) throws GuideException {
return null;
}
}