com.zepben.protobuf.hc.LogMessageOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of evolve-grpc Show documentation
Show all versions of evolve-grpc Show documentation
Protobuf and gRPC definitions for the evolve platform
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: zepben/protobuf/hc/LogMessage.proto
package com.zepben.protobuf.hc;
public interface LogMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:zepben.protobuf.hc.LogMessage)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The ID of the work package.
*
*
* string workPackageId = 1;
* @return The workPackageId.
*/
java.lang.String getWorkPackageId();
/**
*
**
* The ID of the work package.
*
*
* string workPackageId = 1;
* @return The bytes for workPackageId.
*/
com.google.protobuf.ByteString
getWorkPackageIdBytes();
/**
*
**
* The name of the scenario.
*
*
* string scenario = 2;
* @return The scenario.
*/
java.lang.String getScenario();
/**
*
**
* The name of the scenario.
*
*
* string scenario = 2;
* @return The bytes for scenario.
*/
com.google.protobuf.ByteString
getScenarioBytes();
/**
* .google.protobuf.NullValue yearNull = 3;
* @return Whether the yearNull field is set.
*/
boolean hasYearNull();
/**
* .google.protobuf.NullValue yearNull = 3;
* @return The enum numeric value on the wire for yearNull.
*/
int getYearNullValue();
/**
* .google.protobuf.NullValue yearNull = 3;
* @return The yearNull.
*/
com.google.protobuf.NullValue getYearNull();
/**
* int32 yearSet = 4;
* @return Whether the yearSet field is set.
*/
boolean hasYearSet();
/**
* int32 yearSet = 4;
* @return The yearSet.
*/
int getYearSet();
/**
*
**
* The name of the feeder.
*
*
* string feeder = 5;
* @return The feeder.
*/
java.lang.String getFeeder();
/**
*
**
* The name of the feeder.
*
*
* string feeder = 5;
* @return The bytes for feeder.
*/
com.google.protobuf.ByteString
getFeederBytes();
/**
* .google.protobuf.NullValue timeStepNull = 6;
* @return Whether the timeStepNull field is set.
*/
boolean hasTimeStepNull();
/**
* .google.protobuf.NullValue timeStepNull = 6;
* @return The enum numeric value on the wire for timeStepNull.
*/
int getTimeStepNullValue();
/**
* .google.protobuf.NullValue timeStepNull = 6;
* @return The timeStepNull.
*/
com.google.protobuf.NullValue getTimeStepNull();
/**
* .google.protobuf.Timestamp timeStepSet = 7;
* @return Whether the timeStepSet field is set.
*/
boolean hasTimeStepSet();
/**
* .google.protobuf.Timestamp timeStepSet = 7;
* @return The timeStepSet.
*/
com.google.protobuf.Timestamp getTimeStepSet();
/**
* .google.protobuf.Timestamp timeStepSet = 7;
*/
com.google.protobuf.TimestampOrBuilder getTimeStepSetOrBuilder();
/**
*
**
* The time at which this error occurred.
*
*
* .google.protobuf.Timestamp timestamp = 8;
* @return Whether the timestamp field is set.
*/
boolean hasTimestamp();
/**
*
**
* The time at which this error occurred.
*
*
* .google.protobuf.Timestamp timestamp = 8;
* @return The timestamp.
*/
com.google.protobuf.Timestamp getTimestamp();
/**
*
**
* The time at which this error occurred.
*
*
* .google.protobuf.Timestamp timestamp = 8;
*/
com.google.protobuf.TimestampOrBuilder getTimestampOrBuilder();
/**
*
**
* The log level of this failure message.
*
*
* .zepben.protobuf.hc.LogLevel severity = 9;
* @return The enum numeric value on the wire for severity.
*/
int getSeverityValue();
/**
*
**
* The log level of this failure message.
*
*
* .zepben.protobuf.hc.LogLevel severity = 9;
* @return The severity.
*/
com.zepben.protobuf.hc.LogLevel getSeverity();
/**
*
**
* The message to report.
*
*
* string message = 10;
* @return The message.
*/
java.lang.String getMessage();
/**
*
**
* The message to report.
*
*
* string message = 10;
* @return The bytes for message.
*/
com.google.protobuf.ByteString
getMessageBytes();
/**
*
**
* The type of process the log originates from.
*
*
* .zepben.protobuf.hc.LogSource source = 11;
* @return The enum numeric value on the wire for source.
*/
int getSourceValue();
/**
*
**
* The type of process the log originates from.
*
*
* .zepben.protobuf.hc.LogSource source = 11;
* @return The source.
*/
com.zepben.protobuf.hc.LogSource getSource();
com.zepben.protobuf.hc.LogMessage.YearCase getYearCase();
com.zepben.protobuf.hc.LogMessage.TimeStepCase getTimeStepCase();
}