com.netgrif.application.engine.elastic.web.requestbodies.CaseSearchRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
package com.netgrif.application.engine.elastic.web.requestbodies;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
import java.util.Map;
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class CaseSearchRequest {
@JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
public List process;
@Deprecated(since = "6.3.0")
@JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
public List processIdentifier;
@JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
public List author;
public Map data;
public String fullText;
public String uriNodeId;
@JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
public List transition;
@JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
public List role;
public String query;
@JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
public List stringId;
@JsonFormat(with = JsonFormat.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY)
public List group;
@Data
@NoArgsConstructor
@AllArgsConstructor
public static class PetriNet {
public String identifier;
public String processId;
public PetriNet(String identifier) {
this.identifier = identifier;
}
}
@Data
@NoArgsConstructor
@AllArgsConstructor
public static class Author {
public String id;
public String name;
public String email;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy