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

com.amazonaws.services.pinpoint.model.APNSSandboxChannelRequest Maven / Gradle / Ivy

Go to download

The AWS Android SDK for Amazon Pinpoint module holds the client classes that are used for communicating with Amazon Pinpoint Service

There is a newer version: 2.77.0
Show newest version
/*
 * Copyright 2010-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 *
 *  http://aws.amazon.com/apache2.0
 *
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */

package com.amazonaws.services.pinpoint.model;

import java.io.Serializable;

/**
 * Apple Development Push Notification Service channel definition.
 */
public class APNSSandboxChannelRequest implements Serializable {
    /**
     * The bundle id used for APNs Tokens.
     */
    private String bundleId;

    /**
     * The distribution certificate from Apple.
     */
    private String certificate;

    /**
     * The default authentication method used for APNs.
     */
    private String defaultAuthenticationMethod;

    /**
     * If the channel is enabled for sending messages.
     */
    private Boolean enabled;

    /**
     * The certificate private key.
     */
    private String privateKey;

    /**
     * The team id used for APNs Tokens.
     */
    private String teamId;

    /**
     * The token key used for APNs Tokens.
     */
    private String tokenKey;

    /**
     * The token key used for APNs Tokens.
     */
    private String tokenKeyId;

    /**
     * The bundle id used for APNs Tokens.
     *
     * @return The bundle id used for APNs Tokens.
     */
    public String getBundleId() {
        return bundleId;
    }

    /**
     * The bundle id used for APNs Tokens.
     *
     * @param bundleId The bundle id used for APNs Tokens.
     */
    public void setBundleId(String bundleId) {
        this.bundleId = bundleId;
    }

    /**
     * The bundle id used for APNs Tokens.
     * 

* Returns a reference to this object so that method calls can be chained * together. * * @param bundleId The bundle id used for APNs Tokens. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSSandboxChannelRequest withBundleId(String bundleId) { this.bundleId = bundleId; return this; } /** * The distribution certificate from Apple. * * @return The distribution certificate from Apple. */ public String getCertificate() { return certificate; } /** * The distribution certificate from Apple. * * @param certificate The distribution certificate from Apple. */ public void setCertificate(String certificate) { this.certificate = certificate; } /** * The distribution certificate from Apple. *

* Returns a reference to this object so that method calls can be chained * together. * * @param certificate The distribution certificate from Apple. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSSandboxChannelRequest withCertificate(String certificate) { this.certificate = certificate; return this; } /** * The default authentication method used for APNs. * * @return The default authentication method used for APNs. */ public String getDefaultAuthenticationMethod() { return defaultAuthenticationMethod; } /** * The default authentication method used for APNs. * * @param defaultAuthenticationMethod The default authentication method used * for APNs. */ public void setDefaultAuthenticationMethod(String defaultAuthenticationMethod) { this.defaultAuthenticationMethod = defaultAuthenticationMethod; } /** * The default authentication method used for APNs. *

* Returns a reference to this object so that method calls can be chained * together. * * @param defaultAuthenticationMethod The default authentication method used * for APNs. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSSandboxChannelRequest withDefaultAuthenticationMethod( String defaultAuthenticationMethod) { this.defaultAuthenticationMethod = defaultAuthenticationMethod; return this; } /** * If the channel is enabled for sending messages. * * @return If the channel is enabled for sending messages. */ public Boolean isEnabled() { return enabled; } /** * If the channel is enabled for sending messages. * * @return If the channel is enabled for sending messages. */ public Boolean getEnabled() { return enabled; } /** * If the channel is enabled for sending messages. * * @param enabled If the channel is enabled for sending messages. */ public void setEnabled(Boolean enabled) { this.enabled = enabled; } /** * If the channel is enabled for sending messages. *

* Returns a reference to this object so that method calls can be chained * together. * * @param enabled If the channel is enabled for sending messages. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSSandboxChannelRequest withEnabled(Boolean enabled) { this.enabled = enabled; return this; } /** * The certificate private key. * * @return The certificate private key. */ public String getPrivateKey() { return privateKey; } /** * The certificate private key. * * @param privateKey The certificate private key. */ public void setPrivateKey(String privateKey) { this.privateKey = privateKey; } /** * The certificate private key. *

* Returns a reference to this object so that method calls can be chained * together. * * @param privateKey The certificate private key. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSSandboxChannelRequest withPrivateKey(String privateKey) { this.privateKey = privateKey; return this; } /** * The team id used for APNs Tokens. * * @return The team id used for APNs Tokens. */ public String getTeamId() { return teamId; } /** * The team id used for APNs Tokens. * * @param teamId The team id used for APNs Tokens. */ public void setTeamId(String teamId) { this.teamId = teamId; } /** * The team id used for APNs Tokens. *

* Returns a reference to this object so that method calls can be chained * together. * * @param teamId The team id used for APNs Tokens. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSSandboxChannelRequest withTeamId(String teamId) { this.teamId = teamId; return this; } /** * The token key used for APNs Tokens. * * @return The token key used for APNs Tokens. */ public String getTokenKey() { return tokenKey; } /** * The token key used for APNs Tokens. * * @param tokenKey The token key used for APNs Tokens. */ public void setTokenKey(String tokenKey) { this.tokenKey = tokenKey; } /** * The token key used for APNs Tokens. *

* Returns a reference to this object so that method calls can be chained * together. * * @param tokenKey The token key used for APNs Tokens. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSSandboxChannelRequest withTokenKey(String tokenKey) { this.tokenKey = tokenKey; return this; } /** * The token key used for APNs Tokens. * * @return The token key used for APNs Tokens. */ public String getTokenKeyId() { return tokenKeyId; } /** * The token key used for APNs Tokens. * * @param tokenKeyId The token key used for APNs Tokens. */ public void setTokenKeyId(String tokenKeyId) { this.tokenKeyId = tokenKeyId; } /** * The token key used for APNs Tokens. *

* Returns a reference to this object so that method calls can be chained * together. * * @param tokenKeyId The token key used for APNs Tokens. * @return A reference to this updated object so that method calls can be * chained together. */ public APNSSandboxChannelRequest withTokenKeyId(String tokenKeyId) { this.tokenKeyId = tokenKeyId; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getBundleId() != null) sb.append("BundleId: " + getBundleId() + ","); if (getCertificate() != null) sb.append("Certificate: " + getCertificate() + ","); if (getDefaultAuthenticationMethod() != null) sb.append("DefaultAuthenticationMethod: " + getDefaultAuthenticationMethod() + ","); if (getEnabled() != null) sb.append("Enabled: " + getEnabled() + ","); if (getPrivateKey() != null) sb.append("PrivateKey: " + getPrivateKey() + ","); if (getTeamId() != null) sb.append("TeamId: " + getTeamId() + ","); if (getTokenKey() != null) sb.append("TokenKey: " + getTokenKey() + ","); if (getTokenKeyId() != null) sb.append("TokenKeyId: " + getTokenKeyId()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getBundleId() == null) ? 0 : getBundleId().hashCode()); hashCode = prime * hashCode + ((getCertificate() == null) ? 0 : getCertificate().hashCode()); hashCode = prime * hashCode + ((getDefaultAuthenticationMethod() == null) ? 0 : getDefaultAuthenticationMethod().hashCode()); hashCode = prime * hashCode + ((getEnabled() == null) ? 0 : getEnabled().hashCode()); hashCode = prime * hashCode + ((getPrivateKey() == null) ? 0 : getPrivateKey().hashCode()); hashCode = prime * hashCode + ((getTeamId() == null) ? 0 : getTeamId().hashCode()); hashCode = prime * hashCode + ((getTokenKey() == null) ? 0 : getTokenKey().hashCode()); hashCode = prime * hashCode + ((getTokenKeyId() == null) ? 0 : getTokenKeyId().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof APNSSandboxChannelRequest == false) return false; APNSSandboxChannelRequest other = (APNSSandboxChannelRequest) obj; if (other.getBundleId() == null ^ this.getBundleId() == null) return false; if (other.getBundleId() != null && other.getBundleId().equals(this.getBundleId()) == false) return false; if (other.getCertificate() == null ^ this.getCertificate() == null) return false; if (other.getCertificate() != null && other.getCertificate().equals(this.getCertificate()) == false) return false; if (other.getDefaultAuthenticationMethod() == null ^ this.getDefaultAuthenticationMethod() == null) return false; if (other.getDefaultAuthenticationMethod() != null && other.getDefaultAuthenticationMethod().equals( this.getDefaultAuthenticationMethod()) == false) return false; if (other.getEnabled() == null ^ this.getEnabled() == null) return false; if (other.getEnabled() != null && other.getEnabled().equals(this.getEnabled()) == false) return false; if (other.getPrivateKey() == null ^ this.getPrivateKey() == null) return false; if (other.getPrivateKey() != null && other.getPrivateKey().equals(this.getPrivateKey()) == false) return false; if (other.getTeamId() == null ^ this.getTeamId() == null) return false; if (other.getTeamId() != null && other.getTeamId().equals(this.getTeamId()) == false) return false; if (other.getTokenKey() == null ^ this.getTokenKey() == null) return false; if (other.getTokenKey() != null && other.getTokenKey().equals(this.getTokenKey()) == false) return false; if (other.getTokenKeyId() == null ^ this.getTokenKeyId() == null) return false; if (other.getTokenKeyId() != null && other.getTokenKeyId().equals(this.getTokenKeyId()) == false) return false; return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy