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

com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol Maven / Gradle / Ivy

There is a newer version: 5.3.3
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: SetModuleStateCommand.proto

package com.alachisoft.ncache.common.protobuf;

public final class SetModuleStateCommandProtocol {
  private SetModuleStateCommandProtocol() {}
  public static void registerAllExtensions(
      com.google.protobuf.ExtensionRegistry registry) {
  }
  public static final class SetModuleStateCommand extends
      com.google.protobuf.GeneratedMessage {
    // Use SetModuleStateCommand.newBuilder() to construct.
    private SetModuleStateCommand() {
      initFields();
    }
    private SetModuleStateCommand(boolean noInit) {}
    
    private static final SetModuleStateCommand defaultInstance;
    public static SetModuleStateCommand getDefaultInstance() {
      return defaultInstance;
    }
    
    public SetModuleStateCommand getDefaultInstanceForType() {
      return defaultInstance;
    }
    
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.internal_static_com_alachisoft_ncache_common_protobuf_SetModuleStateCommand_descriptor;
    }
    
    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.internal_static_com_alachisoft_ncache_common_protobuf_SetModuleStateCommand_fieldAccessorTable;
    }
    
    // optional string moduleName = 1;
    public static final int MODULENAME_FIELD_NUMBER = 1;
    private boolean hasModuleName;
    private java.lang.String moduleName_ = "";
    public boolean hasModuleName() { return hasModuleName; }
    public java.lang.String getModuleName() { return moduleName_; }
    
    // optional int64 requestId = 2;
    public static final int REQUESTID_FIELD_NUMBER = 2;
    private boolean hasRequestId;
    private long requestId_ = 0L;
    public boolean hasRequestId() { return hasRequestId; }
    public long getRequestId() { return requestId_; }
    
    // optional int64 commandId = 3;
    public static final int COMMANDID_FIELD_NUMBER = 3;
    private boolean hasCommandId;
    private long commandId_ = 0L;
    public boolean hasCommandId() { return hasCommandId; }
    public long getCommandId() { return commandId_; }
    
    // optional string version = 4;
    public static final int VERSION_FIELD_NUMBER = 4;
    private boolean hasVersion;
    private java.lang.String version_ = "";
    public boolean hasVersion() { return hasVersion; }
    public java.lang.String getVersion() { return version_; }
    
    // optional bytes state = 5;
    public static final int STATE_FIELD_NUMBER = 5;
    private boolean hasState;
    private com.google.protobuf.ByteString state_ = com.google.protobuf.ByteString.EMPTY;
    public boolean hasState() { return hasState; }
    public com.google.protobuf.ByteString getState() { return state_; }
    
    private void initFields() {
    }
    public final boolean isInitialized() {
      return true;
    }
    
    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (hasModuleName()) {
        output.writeString(1, getModuleName());
      }
      if (hasRequestId()) {
        output.writeInt64(2, getRequestId());
      }
      if (hasCommandId()) {
        output.writeInt64(3, getCommandId());
      }
      if (hasVersion()) {
        output.writeString(4, getVersion());
      }
      if (hasState()) {
        output.writeBytes(5, getState());
      }
      getUnknownFields().writeTo(output);
    }
    
    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;
    
      size = 0;
      if (hasModuleName()) {
        size += com.google.protobuf.CodedOutputStream
          .computeStringSize(1, getModuleName());
      }
      if (hasRequestId()) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt64Size(2, getRequestId());
      }
      if (hasCommandId()) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt64Size(3, getCommandId());
      }
      if (hasVersion()) {
        size += com.google.protobuf.CodedOutputStream
          .computeStringSize(4, getVersion());
      }
      if (hasState()) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(5, getState());
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }
    
    public static com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data).buildParsed();
    }
    public static com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data, extensionRegistry)
               .buildParsed();
    }
    public static com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data).buildParsed();
    }
    public static com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data, extensionRegistry)
               .buildParsed();
    }
    public static com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input).buildParsed();
    }
    public static com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input, extensionRegistry)
               .buildParsed();
    }
    public static com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      Builder builder = newBuilder();
      if (builder.mergeDelimitedFrom(input)) {
        return builder.buildParsed();
      } else {
        return null;
      }
    }
    public static com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      Builder builder = newBuilder();
      if (builder.mergeDelimitedFrom(input, extensionRegistry)) {
        return builder.buildParsed();
      } else {
        return null;
      }
    }
    public static com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input).buildParsed();
    }
    public static com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input, extensionRegistry)
               .buildParsed();
    }
    
    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }
    
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder {
      private com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand result;
      
      // Construct using com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand.newBuilder()
      private Builder() {}
      
      private static Builder create() {
        Builder builder = new Builder();
        builder.result = new com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand();
        return builder;
      }
      
      protected com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand internalGetResult() {
        return result;
      }
      
      public Builder clear() {
        if (result == null) {
          throw new IllegalStateException(
            "Cannot call clear() after build().");
        }
        result = new com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand();
        return this;
      }
      
      public Builder clone() {
        return create().mergeFrom(result);
      }
      
      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand.getDescriptor();
      }
      
      public com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand getDefaultInstanceForType() {
        return com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand.getDefaultInstance();
      }
      
      public boolean isInitialized() {
        return result.isInitialized();
      }
      public com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand build() {
        if (result != null && !isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return buildPartial();
      }
      
      private com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand buildParsed()
          throws com.google.protobuf.InvalidProtocolBufferException {
        if (!isInitialized()) {
          throw newUninitializedMessageException(
            result).asInvalidProtocolBufferException();
        }
        return buildPartial();
      }
      
      public com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand buildPartial() {
        if (result == null) {
          throw new IllegalStateException(
            "build() has already been called on this Builder.");
        }
        com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand returnMe = result;
        result = null;
        return returnMe;
      }
      
      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand) {
          return mergeFrom((com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }
      
      public Builder mergeFrom(com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand other) {
        if (other == com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand.getDefaultInstance()) return this;
        if (other.hasModuleName()) {
          setModuleName(other.getModuleName());
        }
        if (other.hasRequestId()) {
          setRequestId(other.getRequestId());
        }
        if (other.hasCommandId()) {
          setCommandId(other.getCommandId());
        }
        if (other.hasVersion()) {
          setVersion(other.getVersion());
        }
        if (other.hasState()) {
          setState(other.getState());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }
      
      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder(
            this.getUnknownFields());
        while (true) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              this.setUnknownFields(unknownFields.build());
              return this;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                this.setUnknownFields(unknownFields.build());
                return this;
              }
              break;
            }
            case 10: {
              setModuleName(input.readString());
              break;
            }
            case 16: {
              setRequestId(input.readInt64());
              break;
            }
            case 24: {
              setCommandId(input.readInt64());
              break;
            }
            case 34: {
              setVersion(input.readString());
              break;
            }
            case 42: {
              setState(input.readBytes());
              break;
            }
          }
        }
      }
      
      
      // optional string moduleName = 1;
      public boolean hasModuleName() {
        return result.hasModuleName();
      }
      public java.lang.String getModuleName() {
        return result.getModuleName();
      }
      public Builder setModuleName(java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  result.hasModuleName = true;
        result.moduleName_ = value;
        return this;
      }
      public Builder clearModuleName() {
        result.hasModuleName = false;
        result.moduleName_ = getDefaultInstance().getModuleName();
        return this;
      }
      
      // optional int64 requestId = 2;
      public boolean hasRequestId() {
        return result.hasRequestId();
      }
      public long getRequestId() {
        return result.getRequestId();
      }
      public Builder setRequestId(long value) {
        result.hasRequestId = true;
        result.requestId_ = value;
        return this;
      }
      public Builder clearRequestId() {
        result.hasRequestId = false;
        result.requestId_ = 0L;
        return this;
      }
      
      // optional int64 commandId = 3;
      public boolean hasCommandId() {
        return result.hasCommandId();
      }
      public long getCommandId() {
        return result.getCommandId();
      }
      public Builder setCommandId(long value) {
        result.hasCommandId = true;
        result.commandId_ = value;
        return this;
      }
      public Builder clearCommandId() {
        result.hasCommandId = false;
        result.commandId_ = 0L;
        return this;
      }
      
      // optional string version = 4;
      public boolean hasVersion() {
        return result.hasVersion();
      }
      public java.lang.String getVersion() {
        return result.getVersion();
      }
      public Builder setVersion(java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  result.hasVersion = true;
        result.version_ = value;
        return this;
      }
      public Builder clearVersion() {
        result.hasVersion = false;
        result.version_ = getDefaultInstance().getVersion();
        return this;
      }
      
      // optional bytes state = 5;
      public boolean hasState() {
        return result.hasState();
      }
      public com.google.protobuf.ByteString getState() {
        return result.getState();
      }
      public Builder setState(com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  result.hasState = true;
        result.state_ = value;
        return this;
      }
      public Builder clearState() {
        result.hasState = false;
        result.state_ = getDefaultInstance().getState();
        return this;
      }
      
      // @@protoc_insertion_point(builder_scope:com.alachisoft.ncache.common.protobuf.SetModuleStateCommand)
    }
    
    static {
      defaultInstance = new SetModuleStateCommand(true);
      com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.internalForceInit();
      defaultInstance.initFields();
    }
    
    // @@protoc_insertion_point(class_scope:com.alachisoft.ncache.common.protobuf.SetModuleStateCommand)
  }
  
  private static com.google.protobuf.Descriptors.Descriptor
    internal_static_com_alachisoft_ncache_common_protobuf_SetModuleStateCommand_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_com_alachisoft_ncache_common_protobuf_SetModuleStateCommand_fieldAccessorTable;
  
  public static com.google.protobuf.Descriptors.FileDescriptor
      getDescriptor() {
    return descriptor;
  }
  private static com.google.protobuf.Descriptors.FileDescriptor
      descriptor;
  static {
    java.lang.String[] descriptorData = {
      "\n\033SetModuleStateCommand.proto\022%com.alach" +
      "isoft.ncache.common.protobuf\"q\n\025SetModul" +
      "eStateCommand\022\022\n\nmoduleName\030\001 \001(\t\022\021\n\treq" +
      "uestId\030\002 \001(\003\022\021\n\tcommandId\030\003 \001(\003\022\017\n\007versi" +
      "on\030\004 \001(\t\022\r\n\005state\030\005 \001(\014B\037B\035SetModuleStat" +
      "eCommandProtocol"
    };
    com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
      new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() {
        public com.google.protobuf.ExtensionRegistry assignDescriptors(
            com.google.protobuf.Descriptors.FileDescriptor root) {
          descriptor = root;
          internal_static_com_alachisoft_ncache_common_protobuf_SetModuleStateCommand_descriptor =
            getDescriptor().getMessageTypes().get(0);
          internal_static_com_alachisoft_ncache_common_protobuf_SetModuleStateCommand_fieldAccessorTable = new
            com.google.protobuf.GeneratedMessage.FieldAccessorTable(
              internal_static_com_alachisoft_ncache_common_protobuf_SetModuleStateCommand_descriptor,
              new java.lang.String[] { "ModuleName", "RequestId", "CommandId", "Version", "State", },
              com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand.class,
              com.alachisoft.ncache.common.protobuf.SetModuleStateCommandProtocol.SetModuleStateCommand.Builder.class);
          return null;
        }
      };
    com.google.protobuf.Descriptors.FileDescriptor
      .internalBuildGeneratedFileFrom(descriptorData,
        new com.google.protobuf.Descriptors.FileDescriptor[] {
        }, assigner);
  }
  
  public static void internalForceInit() {}
  
  // @@protoc_insertion_point(outer_class_scope)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy