
com.microsoft.azure.toolkit.lib.containerapps.model.TransportMethod Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
package com.microsoft.azure.toolkit.lib.containerapps.model;
import lombok.AllArgsConstructor;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
import org.apache.commons.lang3.StringUtils;
import java.util.Arrays;
import java.util.List;
@Getter
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode
public class TransportMethod {
public static final TransportMethod AUTO = new TransportMethod("auto", "Auto");
public static final TransportMethod HTTP = new TransportMethod("http", "HTTP/1");
public static final TransportMethod HTTP2 = new TransportMethod("http2", "HTTP/2");
public static final TransportMethod TCP = new TransportMethod("tcp", "TCP");
private String value;
private String displayName;
public static List values() {
return Arrays.asList(AUTO, HTTP, HTTP2, TCP);
}
public static TransportMethod fromString(String input) {
return values().stream()
.filter(logLevel -> StringUtils.equalsIgnoreCase(input, logLevel.getValue()))
.findFirst()
.orElse(null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy