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

org.eclipse.xpanse.api.config.CspEnumConverter Maven / Gradle / Ivy

There is a newer version: 1.0.20
Show newest version
/*
 * SPDX-License-Identifier: Apache-2.0
 * SPDX-FileCopyrightText: Huawei Inc.
 */

package org.eclipse.xpanse.api.config;

import org.eclipse.xpanse.modules.models.common.enums.Csp;
import org.springframework.core.convert.converter.Converter;
import org.springframework.stereotype.Component;

/**
 * Bean for serializing string in request parameters to Csp enum.
 */
@Component
public class CspEnumConverter implements Converter {

    @Override
    public Csp convert(String csp) {
        return Csp.getByValue(csp);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy