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

com.gitlab.tixtix320.sonder.internal.common.communication.BuiltInProtocol Maven / Gradle / Ivy

There is a newer version: 0.11.1
Show newest version
package com.gitlab.tixtix320.sonder.internal.common.communication;

import java.util.List;

public enum BuiltInProtocol {
	RPC("sonder-RPC"),
	TOPIC("sonder-topic");

	public static final List NAMES = List.of(RPC.name, TOPIC.name);

	private final String name;

	BuiltInProtocol(String name) {
		this.name = name;
	}

	public String getName() {
		return name;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy