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

com.freemanan.starter.grpc.extensions.test.GrpcTestProperties Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package com.freemanan.starter.grpc.extensions.test;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

/**
 * @author Freeman
 */
@Data
@ConfigurationProperties(GrpcTestProperties.PREFIX)
public class GrpcTestProperties {
    public static final String PREFIX = "grpc.test";

    /**
     * Whether to enable test, default is {@code true}.
     */
    private boolean enabled = true;
    /**
     * Server-side test configuration.
     */
    private Server server = new Server();

    @Data
    public static class Server {
        public static final String PREFIX = GrpcTestProperties.PREFIX + ".server";

        /**
         * Whether to enable test, default is {@code true}.
         */
        private boolean enabled = true;
        /**
         * Port configuration, default is {@link PortType#IN_PROCESS}, which means start grpc server with in-process transport.
         *
         * 

* NOTE: if {@code grpc-client-starter} is not in classpath, will fall back to {@link PortType#RANDOM_PORT}. */ private PortType portType = PortType.IN_PROCESS; } /** * If used as a static internal class of {@link Server}, the IDE's automatic prompt will be lost :) */ public enum PortType { /** * Start grpc server with in-process transport. */ IN_PROCESS, /** * Start grpc server with random port. */ RANDOM_PORT, /** * Start grpc server with defined port. * *

using {@code grpc.server.port} property. */ DEFINED_PORT } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy