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.api.json; /* w ww . j ava 2 s . c o m*/ import com.google.api.client.util.Key; /** * Created by davidbrodsky on 2/17/14. */ public class HlsStream extends Stream { @Key("bucket_name") private String mBucket; @Key("aws_region") private String mRegion; @Key("aws_prefix") private String mPrefix; @Key("aws_access_key") private String mAwsKey; @Key("aws_secret_key") private String mAwsSecret; public String getAwsS3Bucket() { return mBucket; } public String getRegion() { return mRegion; } public String getAwsS3Prefix() { return mPrefix; } public String getAwsKey() { return mAwsKey; } public String getAwsSecret() { return mAwsSecret; } public String toString(){ return "Bucket: " + getAwsS3Bucket() + " streamUrl " + getStreamUrl(); } }