All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.urbanairship.api.push.model.notification.ios.IOSMediaContent Maven / Gradle / Ivy

There is a newer version: 9.4.2
Show newest version
/*
 * Copyright (c) 2013-2016.  Urban Airship and Contributors
 */
package com.urbanairship.api.push.model.notification.ios;

import com.urbanairship.api.push.model.PushModelObject;

import java.util.Optional;

/**
 * Content for iOS specific media push messages.
 */
public final class IOSMediaContent extends PushModelObject{
    private final Optional title;
    private final Optional body;
    private final Optional subtitle;

    private IOSMediaContent(Optional title, Optional body, Optional subtitle) {
        this.title = title;
        this.body = body;
        this.subtitle = subtitle;
    }

    /**
     * Get a IOSMediaContent builder object that describes portions of the notification that should be modified if the media attachment succeeds.
     * @return Builder
     */
    public static Builder newBuilder() {
        return new Builder();
    }

    /**
     * Get the title used if the media attachment succeeds.
     * @return Optional string representing the title
     */
    public Optional getTitle() {
        return title;
    }

    /**
     * Get the body used if the media attachment succeeds.
     * @return Optional string representing the body
     */
    public Optional getBody() {
        return body;
    }

    /**
     * Get the subtitle used if the media attachment succeeds.
     * @return Optional string representing the body
     */
    public Optional getSubtitle() {
        return subtitle;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        IOSMediaContent that = (IOSMediaContent)o;
        if (title != null ? !title.equals(that.title) : that.title != null) {
            return false;
        }
        if (body != null ? !body.equals(that.body) : that.body != null) {
            return false;
        }
        if (subtitle != null ? !subtitle.equals(that.subtitle) : that.subtitle != null) {
            return false;
        }
        return true;
    }

    @Override
    public int hashCode() {
        int result = (title != null ? title.hashCode() : 0);
        result = 31 * result + (body != null ? body.hashCode() : 0);
        result = 31 * result + (subtitle != null ? body.hashCode() : 0);
        return result;
    }

    @Override
    public String toString(){
        return "IOSMediaContent{" +
                "title=" + title +
                ", body=" + body +
                ", subtitle=" + subtitle +
                '}';
    }

    public static class Builder{
        private String title = null;
        private String body = null;
        private String subtitle = null;

        private Builder() { }

        /**
         * Set the title for the media attachment.
         * @param title String
         * @return Builder
         */
        public Builder setTitle(String title) {
            this.title = title;
            return this;
        }

        /**
         * Set the body for the media attachment.
         * @param body String
         * @return Builder
         */
        public Builder setBody(String body) {
            this.body = body;
            return this;
        }

        /**
         * Set the subtitle for the media attachment.
         * @param subtitle String
         * @return Builder
         */
        public Builder setSubtitle(String subtitle) {
            this.subtitle = subtitle;
            return this;
        }

        /**
         * Build IOSMediaContent
         * @return IOSMediaContent
         */
        public IOSMediaContent build() {
            return new IOSMediaContent(Optional.ofNullable(title),
                               Optional.ofNullable(body),
                               Optional.ofNullable(subtitle));
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy