导航菜单

页面标题

页面副标题

Mint v5.7.3 - PodcastNative.java 源代码

正在查看: Mint v5.7.3 应用的 PodcastNative.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package com.htmedia.mint.pojo;

import android.os.Parcel;
import android.os.Parcelable;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class PodcastNative implements Parcelable {
    public static final Parcelable.Creator<PodcastNative> CREATOR = new Parcelable.Creator<PodcastNative>() {
        @Override
        public PodcastNative createFromParcel(Parcel parcel) {
            return new PodcastNative(parcel);
        }

        @Override
        public PodcastNative[] newArray(int i) {
            return new PodcastNative[i];
        }
    };

    @SerializedName("carouselLimit")
    @Expose
    private String carouselLimit;

    @SerializedName("moreLink")
    @Expose
    private String moreLink;

    @SerializedName("podcastByPublisher")
    @Expose
    private String podcastByPublisher;

    @SerializedName("podcastCaption")
    @Expose
    private String podcastCaption;

    @SerializedName("podcastEpisode")
    @Expose
    private String podcastEpisode;

    @SerializedName("podcastSingleEpisode")
    @Expose
    private String podcastSingleEpisode;

    @SerializedName("searchByPublisher")
    @Expose
    private String searchByPublisher;

    public PodcastNative() {
    }

    protected PodcastNative(Parcel parcel) {
        this.podcastCaption = parcel.readString();
        this.moreLink = parcel.readString();
        this.carouselLimit = parcel.readString();
        this.searchByPublisher = parcel.readString();
        this.podcastByPublisher = parcel.readString();
        this.podcastEpisode = parcel.readString();
        this.podcastSingleEpisode = parcel.readString();
    }

    @Override
    public int describeContents() {
        return 0;
    }

    public String getCarouselLimit() {
        return this.carouselLimit;
    }

    public String getMoreLink() {
        return this.moreLink;
    }

    public String getPodcastByPublisher() {
        return this.podcastByPublisher;
    }

    public String getPodcastCaption() {
        return this.podcastCaption;
    }

    public String getPodcastEpisode() {
        return this.podcastEpisode;
    }

    public String getPodcastSingleEpisode() {
        this.podcastSingleEpisode = "https://www.htsmartcast.com/wp-json/smartcast-api/v1/episode/";
        return "https://www.htsmartcast.com/wp-json/smartcast-api/v1/episode/";
    }

    public String getSearchByPublisher() {
        return this.searchByPublisher;
    }

    public void setCarouselLimit(String str) {
        this.carouselLimit = str;
    }

    public void setMoreLink(String str) {
        this.moreLink = str;
    }

    public void setPodcastByPublisher(String str) {
        this.podcastByPublisher = str;
    }

    public void setPodcastCaption(String str) {
        this.podcastCaption = str;
    }

    public void setPodcastEpisode(String str) {
        this.podcastEpisode = str;
    }

    public void setPodcastSingleEpisode(String str) {
        this.podcastSingleEpisode = str;
    }

    public void setSearchByPublisher(String str) {
        this.searchByPublisher = str;
    }

    @Override
    public void writeToParcel(Parcel parcel, int i) {
        parcel.writeString(this.podcastCaption);
        parcel.writeString(this.moreLink);
        parcel.writeString(this.carouselLimit);
        parcel.writeString(this.searchByPublisher);
        parcel.writeString(this.podcastByPublisher);
        parcel.writeString(this.podcastEpisode);
        parcel.writeString(this.podcastSingleEpisode);
    }
}