/* * Copyright 2018-2023 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.iotwireless.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Gets information about a Sidewalk device profile. *
* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class SidewalkGetDeviceProfile implements Serializable, Cloneable, StructuredPojo { /** ** The Sidewalk application server public key. *
*/ private String applicationServerPublicKey; /** ** Gets information about the certification status of a Sidewalk device profile. *
*/ private Boolean qualificationStatus; /** ** The DAK certificate information of the Sidewalk device profile. *
*/ private java.util.List* The Sidewalk application server public key. *
* * @param applicationServerPublicKey * The Sidewalk application server public key. */ public void setApplicationServerPublicKey(String applicationServerPublicKey) { this.applicationServerPublicKey = applicationServerPublicKey; } /** ** The Sidewalk application server public key. *
* * @return The Sidewalk application server public key. */ public String getApplicationServerPublicKey() { return this.applicationServerPublicKey; } /** ** The Sidewalk application server public key. *
* * @param applicationServerPublicKey * The Sidewalk application server public key. * @return Returns a reference to this object so that method calls can be chained together. */ public SidewalkGetDeviceProfile withApplicationServerPublicKey(String applicationServerPublicKey) { setApplicationServerPublicKey(applicationServerPublicKey); return this; } /** ** Gets information about the certification status of a Sidewalk device profile. *
* * @param qualificationStatus * Gets information about the certification status of a Sidewalk device profile. */ public void setQualificationStatus(Boolean qualificationStatus) { this.qualificationStatus = qualificationStatus; } /** ** Gets information about the certification status of a Sidewalk device profile. *
* * @return Gets information about the certification status of a Sidewalk device profile. */ public Boolean getQualificationStatus() { return this.qualificationStatus; } /** ** Gets information about the certification status of a Sidewalk device profile. *
* * @param qualificationStatus * Gets information about the certification status of a Sidewalk device profile. * @return Returns a reference to this object so that method calls can be chained together. */ public SidewalkGetDeviceProfile withQualificationStatus(Boolean qualificationStatus) { setQualificationStatus(qualificationStatus); return this; } /** ** Gets information about the certification status of a Sidewalk device profile. *
* * @return Gets information about the certification status of a Sidewalk device profile. */ public Boolean isQualificationStatus() { return this.qualificationStatus; } /** ** The DAK certificate information of the Sidewalk device profile. *
* * @return The DAK certificate information of the Sidewalk device profile. */ public java.util.List* The DAK certificate information of the Sidewalk device profile. *
* * @param dakCertificateMetadata * The DAK certificate information of the Sidewalk device profile. */ public void setDakCertificateMetadata(java.util.Collection* The DAK certificate information of the Sidewalk device profile. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setDakCertificateMetadata(java.util.Collection)} or * {@link #withDakCertificateMetadata(java.util.Collection)} if you want to override the existing values. *
* * @param dakCertificateMetadata * The DAK certificate information of the Sidewalk device profile. * @return Returns a reference to this object so that method calls can be chained together. */ public SidewalkGetDeviceProfile withDakCertificateMetadata(DakCertificateMetadata... dakCertificateMetadata) { if (this.dakCertificateMetadata == null) { setDakCertificateMetadata(new java.util.ArrayList* The DAK certificate information of the Sidewalk device profile. *
* * @param dakCertificateMetadata * The DAK certificate information of the Sidewalk device profile. * @return Returns a reference to this object so that method calls can be chained together. */ public SidewalkGetDeviceProfile withDakCertificateMetadata(java.util.Collection