1
14
15 package com.liferay.portal.googleapps;
16
17 import com.liferay.portal.kernel.xml.Element;
18
19 import java.util.List;
20
21
26 public abstract class GetNextItems {
27
28 public GetNextItems(String url, Element atomFeedElement)
29 throws GoogleAppsException {
30
31 List<Element> atomLinkElements = atomFeedElement.elements(
32 GHelperUtil.getAtomQName("link"));
33
34 for (Element atomLinkElement : atomLinkElements) {
35 String rel = atomLinkElement.attributeValue("rel");
36
37 if (rel.equals("next")) {
38 String href = atomLinkElement.attributeValue("href");
39
40 if (!href.equals(url)) {
41 getNextItems(href);
42 }
43
44 break;
45 }
46 }
47 }
48
49 public abstract void getNextItems(String nextURL)
50 throws GoogleAppsException;
51
52 }