/* * 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.tnb.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class GetSolNetworkPackageContentRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* The format of the package you want to download from the network package. *
*/ private String accept; /** ** ID of the network service descriptor in the network package. *
*/ private String nsdInfoId; /** ** The format of the package you want to download from the network package. *
* * @param accept * The format of the package you want to download from the network package. * @see PackageContentType */ public void setAccept(String accept) { this.accept = accept; } /** ** The format of the package you want to download from the network package. *
* * @return The format of the package you want to download from the network package. * @see PackageContentType */ public String getAccept() { return this.accept; } /** ** The format of the package you want to download from the network package. *
* * @param accept * The format of the package you want to download from the network package. * @return Returns a reference to this object so that method calls can be chained together. * @see PackageContentType */ public GetSolNetworkPackageContentRequest withAccept(String accept) { setAccept(accept); return this; } /** ** The format of the package you want to download from the network package. *
* * @param accept * The format of the package you want to download from the network package. * @return Returns a reference to this object so that method calls can be chained together. * @see PackageContentType */ public GetSolNetworkPackageContentRequest withAccept(PackageContentType accept) { this.accept = accept.toString(); return this; } /** ** ID of the network service descriptor in the network package. *
* * @param nsdInfoId * ID of the network service descriptor in the network package. */ public void setNsdInfoId(String nsdInfoId) { this.nsdInfoId = nsdInfoId; } /** ** ID of the network service descriptor in the network package. *
* * @return ID of the network service descriptor in the network package. */ public String getNsdInfoId() { return this.nsdInfoId; } /** ** ID of the network service descriptor in the network package. *
* * @param nsdInfoId * ID of the network service descriptor in the network package. * @return Returns a reference to this object so that method calls can be chained together. */ public GetSolNetworkPackageContentRequest withNsdInfoId(String nsdInfoId) { setNsdInfoId(nsdInfoId); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getAccept() != null) sb.append("Accept: ").append(getAccept()).append(","); if (getNsdInfoId() != null) sb.append("NsdInfoId: ").append(getNsdInfoId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetSolNetworkPackageContentRequest == false) return false; GetSolNetworkPackageContentRequest other = (GetSolNetworkPackageContentRequest) obj; if (other.getAccept() == null ^ this.getAccept() == null) return false; if (other.getAccept() != null && other.getAccept().equals(this.getAccept()) == false) return false; if (other.getNsdInfoId() == null ^ this.getNsdInfoId() == null) return false; if (other.getNsdInfoId() != null && other.getNsdInfoId().equals(this.getNsdInfoId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAccept() == null) ? 0 : getAccept().hashCode()); hashCode = prime * hashCode + ((getNsdInfoId() == null) ? 0 : getNsdInfoId().hashCode()); return hashCode; } @Override public GetSolNetworkPackageContentRequest clone() { return (GetSolNetworkPackageContentRequest) super.clone(); } }