Codota Logo
GatewayOuterClass$ListWorkflowsRequest
Code IndexAdd Codota to your IDE (free)

How to use
GatewayOuterClass$ListWorkflowsRequest
in
io.zeebe.gateway.protocol

Best Java code snippets using io.zeebe.gateway.protocol.GatewayOuterClass$ListWorkflowsRequest (Showing top 17 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
ArrayList a =
  • Codota Iconnew ArrayList<String>()
  • Codota Iconnew ArrayList()
  • Codota Iconnew ArrayList<Object>()
  • Smart code suggestions by Codota
}
origin: zeebe-io/zeebe

@java.lang.Override
public boolean equals(final java.lang.Object obj) {
 if (obj == this) {
  return true;
 }
 if (!(obj instanceof io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest)) {
  return super.equals(obj);
 }
 io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest other = (io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest) obj;
 boolean result = true;
 result = result && getBpmnProcessId()
   .equals(other.getBpmnProcessId());
 result = result && unknownFields.equals(other.unknownFields);
 return result;
}
origin: zeebe-io/zeebe

@java.lang.Override
public int getSerializedSize() {
 int size = memoizedSize;
 if (size != -1) return size;
 size = 0;
 if (!getBpmnProcessIdBytes().isEmpty()) {
  size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, bpmnProcessId_);
 }
 size += unknownFields.getSerializedSize();
 memoizedSize = size;
 return size;
}
origin: zeebe-io/zeebe

@java.lang.Override
public int hashCode() {
 if (memoizedHashCode != 0) {
  return memoizedHashCode;
 }
 int hash = 41;
 hash = (19 * hash) + getDescriptor().hashCode();
 hash = (37 * hash) + BPMNPROCESSID_FIELD_NUMBER;
 hash = (53 * hash) + getBpmnProcessId().hashCode();
 hash = (29 * hash) + unknownFields.hashCode();
 memoizedHashCode = hash;
 return hash;
}
origin: zeebe-io/zeebe

@java.lang.Override
public io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest buildPartial() {
 io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest result = new io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest(this);
 result.bpmnProcessId_ = bpmnProcessId_;
 onBuilt();
 return result;
}
origin: zeebe-io/zeebe

@java.lang.Override
public io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest build() {
 io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest result = buildPartial();
 if (!result.isInitialized()) {
  throw newUninitializedMessageException(result);
 }
 return result;
}
origin: zeebe-io/zeebe

@java.lang.Override
public io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest getDefaultInstanceForType() {
 return io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest.getDefaultInstance();
}
origin: zeebe-io/zeebe

public static Builder newBuilder(io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest prototype) {
 return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
origin: zeebe-io/zeebe

public static BrokerListWorkflowsRequest toListWorkflowsRequest(
  ListWorkflowsRequest grpcRequest) {
 return new BrokerListWorkflowsRequest().setBpmnProcessId(grpcRequest.getBpmnProcessId());
}
origin: io.zeebe/zeebe-client-java

public ListWorkflowsCommandImpl(GatewayStub gatewayStub) {
 this.gatewayStub = gatewayStub;
 this.request = ListWorkflowsRequest.newBuilder();
}
origin: zeebe-io/zeebe

public ListWorkflowsCommandImpl(GatewayStub gatewayStub) {
 this.gatewayStub = gatewayStub;
 this.request = ListWorkflowsRequest.newBuilder();
}
origin: zeebe-io/zeebe

/**
 * <pre>
 * optional filter: if specified, only the workflows with this given process ID will be
 * returned
 * </pre>
 *
 * <code>string bpmnProcessId = 1;</code>
 */
public Builder clearBpmnProcessId() {
 
 bpmnProcessId_ = getDefaultInstance().getBpmnProcessId();
 onChanged();
 return this;
}
/**
origin: zeebe-io/zeebe

@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
origin: zeebe-io/zeebe

@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
          throws java.io.IOException {
 if (!getBpmnProcessIdBytes().isEmpty()) {
  com.google.protobuf.GeneratedMessageV3.writeString(output, 1, bpmnProcessId_);
 }
 unknownFields.writeTo(output);
}
origin: zeebe-io/zeebe

public Builder mergeFrom(io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest other) {
 if (other == io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest.getDefaultInstance()) return this;
 if (!other.getBpmnProcessId().isEmpty()) {
  bpmnProcessId_ = other.bpmnProcessId_;
  onChanged();
 }
 this.mergeUnknownFields(other.unknownFields);
 onChanged();
 return this;
}
origin: zeebe-io/zeebe

@io.grpc.stub.annotations.RpcMethod(
  fullMethodName = SERVICE_NAME + '/' + "ListWorkflows",
  requestType = io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest.class,
  responseType = io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsResponse.class,
  methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
public static io.grpc.MethodDescriptor<io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest,
  io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsResponse> getListWorkflowsMethod() {
 io.grpc.MethodDescriptor<io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest, io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsResponse> getListWorkflowsMethod;
 if ((getListWorkflowsMethod = GatewayGrpc.getListWorkflowsMethod) == null) {
  synchronized (GatewayGrpc.class) {
   if ((getListWorkflowsMethod = GatewayGrpc.getListWorkflowsMethod) == null) {
    GatewayGrpc.getListWorkflowsMethod = getListWorkflowsMethod = 
      io.grpc.MethodDescriptor.<io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest, io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsResponse>newBuilder()
      .setType(io.grpc.MethodDescriptor.MethodType.UNARY)
      .setFullMethodName(generateFullMethodName(
        "gateway_protocol.Gateway", "ListWorkflows"))
      .setSampledToLocalTracing(true)
      .setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
        io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest.getDefaultInstance()))
      .setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
        io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsResponse.getDefaultInstance()))
        .setSchemaDescriptor(new GatewayMethodDescriptorSupplier("ListWorkflows"))
        .build();
    }
   }
  }
  return getListWorkflowsMethod;
}
origin: zeebe-io/zeebe

    if (!parseUnknownFieldProto3(
      input, unknownFields, extensionRegistry, tag)) {
     done = true;
} finally {
 this.unknownFields = unknownFields.build();
 makeExtensionsImmutable();
origin: zeebe-io/zeebe

public static Builder newBuilder() {
 return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(io.zeebe.gateway.protocol.GatewayOuterClass.ListWorkflowsRequest prototype) {
io.zeebe.gateway.protocolGatewayOuterClass$ListWorkflowsRequest

Javadoc

Protobuf type gateway_protocol.ListWorkflowsRequest

Most used methods

  • getBpmnProcessId
    optional filter: if specified, only the workflows with this given process ID will be returned
  • newBuilder
  • <init>
  • getBpmnProcessIdBytes
    optional filter: if specified, only the workflows with this given process ID will be returned
  • getDefaultInstance
  • getDescriptor
  • isInitialized
  • makeExtensionsImmutable
  • parseUnknownFieldProto3
  • toBuilder

Popular in Java

  • Reactive rest calls using spring rest template
  • setContentView (Activity)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • putExtra (Intent)
  • FileWriter (java.io)
    Convenience class for writing character files. The constructors of this class assume that the defaul
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • JLabel (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now