Back to project page immersive-videoplayer-android.
The source code is released under:
MIT License
If you think the Android project immersive-videoplayer-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.stickmanventures.android.example.immersive_videoplayer.entities; /* w ww . j a va 2 s. co m*/ import java.io.Serializable; public class Video implements Serializable { private static final long serialVersionUID = 1L; /** The title of the video. */ private String title = "Untitled"; /** The author of the video. */ private String author = "Unknown"; /** The description of the video. */ private String description = "No Description"; /** The video's streaming url. */ private String url; /** * Create a video object with a streaming url. * @param url A url to stream from. */ public Video(String url) { this.url = url; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getUrl() { return url; } }