Updated for TentClient API change

This commit is contained in:
moandji.ezana 2012-10-17 00:18:15 +02:00
parent be13a2205c
commit 32c23f64d2
3 changed files with 4 additions and 7 deletions

View file

@ -6,7 +6,6 @@ import com.moandjiezana.tent.client.users.Profile;
import com.moandjiezana.tent.essayist.tent.Entities;
import java.io.IOException;
import java.util.Collections;
import javax.inject.Inject;
import javax.inject.Singleton;
@ -37,7 +36,7 @@ public class EssayServlet extends HttpServlet {
TentClient authorTentClient;
if (user != null) {
authorTentClient = new TentClient(user.getProfile(), Collections.<String>emptyList());
authorTentClient = new TentClient(user.getProfile());
} else {
authorTentClient = new TentClient(authorEntity);
authorTentClient.discover();

View file

@ -8,7 +8,6 @@ import com.moandjiezana.tent.client.posts.Post;
import com.moandjiezana.tent.essayist.auth.AuthResult;
import java.io.IOException;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
@ -52,7 +51,7 @@ public class LoginServlet extends HttpServlet {
return;
}
}
templates.login().render(resp.getWriter());
};
@ -69,7 +68,7 @@ public class LoginServlet extends HttpServlet {
String redirectUri;
if (user != null && user.getRegistration() != null) {
tentClient = new TentClient(user.getProfile(), Collections.<String>emptyList());
tentClient = new TentClient(user.getProfile());
tentClient.getAsync().setAccessToken(user.getAccessToken());
tentClient.getAsync().setRegistrationResponse(user.getRegistration());
redirectUri = user.getRegistration().getRedirectUris()[1];

View file

@ -7,7 +7,6 @@ import com.moandjiezana.tent.client.users.Permissions;
import com.moandjiezana.tent.essayist.tent.Entities;
import java.io.IOException;
import java.util.Collections;
import javax.inject.Inject;
import javax.inject.Singleton;
@ -58,7 +57,7 @@ public class NewEssayServlet extends HttpServlet {
private TentClient tentClient(HttpServletRequest req) {
User user = (User) req.getSession().getAttribute(User.class.getName());
TentClient tentClient = new TentClient(user.getProfile(), Collections.<String>emptyList());
TentClient tentClient = new TentClient(user.getProfile());
tentClient.getAsync().setAccessToken(user.getAccessToken());
return tentClient;