DefaultCognitiveServicesAccountConverter.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.search.documents.implementation.converters;
import com.azure.search.documents.indexes.models.DefaultCognitiveServicesAccount;
/**
* A converter between {@link com.azure.search.documents.indexes.implementation.models.DefaultCognitiveServicesAccount} and
* {@link DefaultCognitiveServicesAccount}.
*/
public final class DefaultCognitiveServicesAccountConverter {
/**
* Maps from {@link com.azure.search.documents.indexes.implementation.models.DefaultCognitiveServicesAccount} to
* {@link DefaultCognitiveServicesAccount}.
*/
public static DefaultCognitiveServicesAccount map(com.azure.search.documents.indexes.implementation.models.DefaultCognitiveServicesAccount obj) {
if (obj == null) {
return null;
}
DefaultCognitiveServicesAccount defaultCognitiveServicesAccount = new DefaultCognitiveServicesAccount();
String description = obj.getDescription();
defaultCognitiveServicesAccount.setDescription(description);
return defaultCognitiveServicesAccount;
}
/**
* Maps from {@link DefaultCognitiveServicesAccount} to
* {@link com.azure.search.documents.indexes.implementation.models.DefaultCognitiveServicesAccount}.
*/
public static com.azure.search.documents.indexes.implementation.models.DefaultCognitiveServicesAccount map(DefaultCognitiveServicesAccount obj) {
if (obj == null) {
return null;
}
com.azure.search.documents.indexes.implementation.models.DefaultCognitiveServicesAccount defaultCognitiveServicesAccount = new com.azure.search.documents.indexes.implementation.models.DefaultCognitiveServicesAccount();
String description = obj.getDescription();
defaultCognitiveServicesAccount.setDescription(description);
return defaultCognitiveServicesAccount;
}
private DefaultCognitiveServicesAccountConverter() {
}
}