Back to project page kickflip-android-sdk.
The source code is released under:
Apache License
If you think the Android project kickflip-android-sdk 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 io.kickflip.sdk.event; /* w ww . j a v a2s . c o m*/ /** * Created by davidbrodsky on 1/28/14. */ public class HlsSegmentUploadedEvent extends BroadcastEvent { private String mUrl; public HlsSegmentUploadedEvent(String mUrl) { this.mUrl = mUrl; } public String getUrl() { return mUrl; } }