events.PeerType Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snotel Show documentation
Show all versions of snotel Show documentation
Java support for Cloud Foundry's Loggregator using the Dropsonde protocol.
// 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