summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/shared/ui/video/VideoState.java
blob: 1dc8d07b7c37a802a7d3979463507b02028d62bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
@VaadinApache2LicenseForJavaFiles@
 */
package com.vaadin.shared.ui.video;

import com.vaadin.shared.communication.URLReference;
import com.vaadin.shared.ui.AbstractMediaState;

public class VideoState extends AbstractMediaState {
    private URLReference poster;

    public URLReference getPoster() {
        return poster;
    }

    public void setPoster(URLReference poster) {
        this.poster = poster;
    }

}