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

events.PeerType Maven / Gradle / Ivy

Go to download

Java support for Cloud Foundry's Loggregator using the Dropsonde protocol.

There is a newer version: 0.5
Show newest version
// Code generated by Wire protocol buffer compiler, do not edit.
// Source file: /Users/mheath/projects/snotel/target/checkout/client/src/main/proto/events/http.proto
package events;

import com.squareup.wire.ProtoEnum;

public enum PeerType
    implements ProtoEnum {
  Client(1),
  /**
   * / Request is made by this process.
   */
  Server(2);

  private final int value;

  private PeerType(int value) {
    this.value = value;
  }

  @Override
  public int getValue() {
    return value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy