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

events.Method 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 Method
    implements ProtoEnum {
  GET(1),
  POST(2),
  PUT(3),
  DELETE(4),
  HEAD(5);

  private final int value;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy