aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/ui/AbstractMedia.java
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-09-20 15:33:19 +0300
committerLeif Åstrand <leif@vaadin.com>2012-09-20 15:33:19 +0300
commit6335562c72fb193a2835a3a09b617aa6c90efea6 (patch)
tree63288fef0874cf5a03b8d3e034f65daae92c2c29 /server/src/com/vaadin/ui/AbstractMedia.java
parent23e77a833df4845c0c0011dde13e6fc5db901a1c (diff)
downloadvaadin-framework-6335562c72fb193a2835a3a09b617aa6c90efea6.tar.gz
vaadin-framework-6335562c72fb193a2835a3a09b617aa6c90efea6.zip
Rename WrappedXYZ -> VaadinXYZ but retain WrappedSession (#9633)
Diffstat (limited to 'server/src/com/vaadin/ui/AbstractMedia.java')
-rw-r--r--server/src/com/vaadin/ui/AbstractMedia.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/src/com/vaadin/ui/AbstractMedia.java b/server/src/com/vaadin/ui/AbstractMedia.java
index 219413974b..3cc801817f 100644
--- a/server/src/com/vaadin/ui/AbstractMedia.java
+++ b/server/src/com/vaadin/ui/AbstractMedia.java
@@ -26,8 +26,8 @@ import java.util.regex.Pattern;
import com.vaadin.server.ConnectorResource;
import com.vaadin.server.Resource;
import com.vaadin.server.ResourceReference;
-import com.vaadin.server.WrappedRequest;
-import com.vaadin.server.WrappedResponse;
+import com.vaadin.server.VaadinRequest;
+import com.vaadin.server.VaadinResponse;
import com.vaadin.shared.communication.URLReference;
import com.vaadin.shared.ui.AbstractMediaState;
import com.vaadin.shared.ui.MediaControl;
@@ -79,8 +79,8 @@ public abstract class AbstractMedia extends AbstractComponent {
}
@Override
- public boolean handleConnectorRequest(WrappedRequest request,
- WrappedResponse response, String path) throws IOException {
+ public boolean handleConnectorRequest(VaadinRequest request,
+ VaadinResponse response, String path) throws IOException {
Matcher matcher = Pattern.compile("(\\d+)(/.*)?").matcher(path);
if (matcher.matches()) {
List<URLReference> sources = getState().sources;