diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-09-06 13:34:36 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-09-06 17:07:47 +0300 |
commit | b9ff0e2cee370f0b489f36a13ec2a98f3cdccf96 (patch) | |
tree | 883b4e503ee04b18aeae8d067be4a3ec6ccd2a90 /uitest | |
parent | c1e1b2022990e8d00d3510fb14953b1a4a510af7 (diff) | |
download | vaadin-framework-b9ff0e2cee370f0b489f36a13ec2a98f3cdccf96.tar.gz vaadin-framework-b9ff0e2cee370f0b489f36a13ec2a98f3cdccf96.zip |
Remove 'Application' from RequestHandler API (#9402)
Diffstat (limited to 'uitest')
5 files changed, 5 insertions, 5 deletions
diff --git a/uitest/src/com/vaadin/tests/Parameters.java b/uitest/src/com/vaadin/tests/Parameters.java index f57c0aece6..056427d685 100644 --- a/uitest/src/com/vaadin/tests/Parameters.java +++ b/uitest/src/com/vaadin/tests/Parameters.java @@ -106,7 +106,7 @@ public class Parameters extends com.vaadin.Application implements } @Override - public boolean handleRequest(VaadinSession application, + public boolean handleRequest(VaadinSession session, WrappedRequest request, WrappedResponse response) throws IOException { context.setValue("Context not available"); diff --git a/uitest/src/com/vaadin/tests/minitutorials/v7a1/DynamicImageUI.java b/uitest/src/com/vaadin/tests/minitutorials/v7a1/DynamicImageUI.java index 632eda2491..e17d7c2a34 100644 --- a/uitest/src/com/vaadin/tests/minitutorials/v7a1/DynamicImageUI.java +++ b/uitest/src/com/vaadin/tests/minitutorials/v7a1/DynamicImageUI.java @@ -56,7 +56,7 @@ class DynamicImageRequestHandler implements RequestHandler { public static final String IMAGE_URL = "myimage.png"; @Override - public boolean handleRequest(VaadinSession application, + public boolean handleRequest(VaadinSession session, WrappedRequest request, WrappedResponse response) throws IOException { String pathInfo = request.getRequestPathInfo(); diff --git a/uitest/src/com/vaadin/tests/tickets/Ticket1589.java b/uitest/src/com/vaadin/tests/tickets/Ticket1589.java index 82cfa2b3ec..327b5b57d0 100644 --- a/uitest/src/com/vaadin/tests/tickets/Ticket1589.java +++ b/uitest/src/com/vaadin/tests/tickets/Ticket1589.java @@ -52,7 +52,7 @@ class MyDynamicResource implements RequestHandler { * stream that contains the response from the server. */ @Override - public boolean handleRequest(VaadinSession application, + public boolean handleRequest(VaadinSession session, WrappedRequest request, WrappedResponse response) throws IOException { String relativeUri = request.getRequestPathInfo(); diff --git a/uitest/src/com/vaadin/tests/tickets/Ticket1921.java b/uitest/src/com/vaadin/tests/tickets/Ticket1921.java index 3f2529db5f..b33484da23 100644 --- a/uitest/src/com/vaadin/tests/tickets/Ticket1921.java +++ b/uitest/src/com/vaadin/tests/tickets/Ticket1921.java @@ -94,7 +94,7 @@ public class Ticket1921 extends Application implements RequestHandler { } @Override - public boolean handleRequest(VaadinSession application, + public boolean handleRequest(VaadinSession session, WrappedRequest request, WrappedResponse response) throws IOException { Map<String, String[]> parameters = request.getParameterMap(); diff --git a/uitest/src/com/vaadin/tests/tickets/Ticket2292.java b/uitest/src/com/vaadin/tests/tickets/Ticket2292.java index 839c175866..6a831d1cfd 100644 --- a/uitest/src/com/vaadin/tests/tickets/Ticket2292.java +++ b/uitest/src/com/vaadin/tests/tickets/Ticket2292.java @@ -48,7 +48,7 @@ public class Ticket2292 extends com.vaadin.Application implements } @Override - public boolean handleRequest(VaadinSession application, + public boolean handleRequest(VaadinSession session, WrappedRequest request, WrappedResponse response) throws IOException { String relativeUri = request.getRequestPathInfo(); |