index int64 | repo_id string | file_path string | content string |
|---|---|---|---|
0 | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http/request/RequestExtractor.java | package ai.agentscentral.http.request;
import jakarta.servlet.http.HttpServletRequest;
/**
* RequestExtractor
*
* @author Rizwan Idrees
*/
public interface RequestExtractor {
MessageRequest extract(HttpServletRequest request);
}
|
0 | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http/request/SessionIdExtractor.java | package ai.agentscentral.http.request;
import jakarta.servlet.http.HttpServletRequest;
import java.util.Optional;
/**
* SessionIdExtractor
*
* @author Rizwan Idrees
*/
public interface SessionIdExtractor {
Optional<String> extract(HttpServletRequest request);
}
|
0 | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http/request/TrailingRequestPathConversationIdExtractor.java | package ai.agentscentral.http.request;
import jakarta.servlet.http.HttpServletRequest;
import org.apache.commons.lang3.StringUtils;
import java.util.Optional;
import static org.apache.commons.lang3.StringUtils.*;
/**
* TrailingRequestPathConversationIdExtractor
*
* @author Rizwan Idrees
*/
public class Trailing... |
0 | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http/response/JsonResponseSender.java | package ai.agentscentral.http.response;
import com.fasterxml.jackson.databind.ObjectMapper;
import jakarta.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
import static jakarta.servlet.http.HttpServletResponse.SC_OK;
/**
* JsonResponseSender
*
* @author Rizwan Idrees
*/... |
0 | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http/response/Message.java | package ai.agentscentral.http.response;
public interface Message {
MessageType type();
String id();
long timestamp();
}
|
0 | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http/response/MessageResponse.java | package ai.agentscentral.http.response;
import jakarta.annotation.Nonnull;
import java.util.List;
/**
* MessageResponse
*
* @param sessionId
* @param messages
* @author Rizwan Idrees
*/
public record MessageResponse(@Nonnull String sessionId, @Nonnull List<? extends Message> messages) {
}
|
0 | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http/response/MessageType.java | package ai.agentscentral.http.response;
public enum MessageType {
text
}
|
0 | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http/response/ResponseSender.java | package ai.agentscentral.http.response;
import jakarta.servlet.http.HttpServletResponse;
/**
* ResponseSender
*
* @author Rizwan Idrees
*/
public interface ResponseSender {
void send(HttpServletResponse response, MessageResponse messageResponse);
}
|
0 | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http/response/TextMessage.java | package ai.agentscentral.http.response;
public record TextMessage(MessageType type, String id, String text, long timestamp) implements Message {
public MessageType type() {
return MessageType.text;
}
}
|
0 | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http/runner/AgentJHttpRunner.java | package ai.agentscentral.http.runner;
/**
* AgentJHttpRunner
*
* @author Rizwan Idrees
*/
public interface AgentJHttpRunner {
void start() throws Exception;
void stop() throws Exception;
}
|
0 | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http/runner/AgentJStarter.java | package ai.agentscentral.http.runner;
import static ai.agentscentral.http.banner.Banner.printBanner;
/**
* AgentJStarter
*
* @author Rizwan Idrees
*/
public class AgentJStarter {
private AgentJStarter() {
}
public static void run(AgentJHttpRunner runner) throws Exception {
printBanner();
... |
0 | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http/servlet/AgentJServlet.java | package ai.agentscentral.http.servlet;
import ai.agentscentral.core.session.id.MessageIdGenerator;
import ai.agentscentral.core.session.id.SessionIdGenerator;
import ai.agentscentral.core.session.message.*;
import ai.agentscentral.core.session.processor.SessionProcessor;
import ai.agentscentral.http.request.MessageReq... |
0 | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http | java-sources/ai/agentscentral/agentj-http/0.0.5/ai/agentscentral/http/servlet/HealthCheckServlet.java | package ai.agentscentral.http.servlet;
import ai.agentscentral.http.health.LivenessProbe;
import ai.agentscentral.http.health.ReadinessProbe;
import ai.agentscentral.http.health.response.HealthCheckResponse;
import ai.agentscentral.http.health.response.LivenessResponse;
import ai.agentscentral.http.health.response.Rea... |
0 | java-sources/ai/agentscentral/agentj-jetty/0.0.5/ai/agentscentral/jetty | java-sources/ai/agentscentral/agentj-jetty/0.0.5/ai/agentscentral/jetty/config/JettyConfig.java | package ai.agentscentral.jetty.config;
/**
* JettyConfig
*
* @param port
* @param maxVirtualThreads
* @param reservedThreads
* @author Rizwan Idrees
*/
public record JettyConfig(int port, int maxVirtualThreads, int reservedThreads) {
public static JettyConfig defaultJettyConfig() {
return new Jetty... |
0 | java-sources/ai/agentscentral/agentj-jetty/0.0.5/ai/agentscentral/jetty | java-sources/ai/agentscentral/agentj-jetty/0.0.5/ai/agentscentral/jetty/runner/JettyHttpRunner.java | package ai.agentscentral.jetty.runner;
import ai.agentscentral.core.context.InMemoryContextManager;
import ai.agentscentral.core.context.InMemoryContextStateManager;
import ai.agentscentral.core.factory.AgentJFactory;
import ai.agentscentral.core.factory.DefaultAgentJFactory;
import ai.agentscentral.core.session.proce... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/Jsonify.java | package ai.agentscentral.openai.client;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
/**
* Jsonify
*
* @author Rizwan Idrees
*/
class Jsonify {
private static final ObjectMapper mapper = new... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/OpenAIClient.java | package ai.agentscentral.openai.client;
import ai.agentscentral.core.model.ProviderClient;
import ai.agentscentral.openai.client.request.CompletionRequest;
import ai.agentscentral.openai.client.response.CompletionResponse;
import org.apache.hc.client5.http.HttpResponseException;
import java.io.IOException;
import st... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/CompletionRequest.java | package ai.agentscentral.openai.client.request;
import ai.agentscentral.openai.client.request.attributes.*;
import ai.agentscentral.openai.config.OpenAIConfig;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonUnwrapped;
import jakarta.annotation.Nonnull;
import java.ut... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/ApproximateLocation.java | package ai.agentscentral.openai.client.request.attributes;
/**
* ApproximateLocation
*
* @param city
* @param country
* @param region
* @param timezone
* @author Rizwan Idrees
*/
public record ApproximateLocation(String city, String country, String region, String timezone) {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/ContentPart.java | package ai.agentscentral.openai.client.request.attributes;
/**
* ContentPart
*
* @author Rizwan Idrees
*/
public interface ContentPart {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/EnumFunctionProperty.java | package ai.agentscentral.openai.client.request.attributes;
/**
* EnumFunctionProperty
*
* @param type
* @param enums
* @author Rizwan Idrees
*/
public record EnumFunctionProperty(String type, String[] enums) implements FunctionProperty {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/FunctionParameters.java | package ai.agentscentral.openai.client.request.attributes;
import java.util.Map;
import java.util.Set;
/**
* FunctionParameters
*
* @param type
* @param properties
* @param required
* @author Rizwan Idrees
*/
public record FunctionParameters(String type,
Map<String, ? extends F... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/FunctionProperty.java | package ai.agentscentral.openai.client.request.attributes;
/**
* FunctionProperty
*
* @author Rizwan Idrees
*/
public interface FunctionProperty {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/JSONSchemaResponseFormat.java | package ai.agentscentral.openai.client.request.attributes;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* JSONSchemaResponseFormat
* @param type
* @param jsonSchema
*
* @author Rizwan Idrees
*/
public record JSONSchemaResponseFormat(String type,
@JsonProperty(... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/MessageContent.java | package ai.agentscentral.openai.client.request.attributes;
/**
* MessageContent
*
* @author Rizwan Idrees
*/
public interface MessageContent {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/MessageContents.java | package ai.agentscentral.openai.client.request.attributes;
import java.util.List;
/**
* TextContents
*
* @param content
* @author Rizwan Idrees
*/
public record MessageContents(List<ContentPart> content) implements MessageContent {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/OpenAIAssistantMessage.java | package ai.agentscentral.openai.client.request.attributes;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonUnwrapped;
import java.util.List;
/**
* OpenAIAssistantMessage
* @param role
* @param content
* @param name
* @param refusal
* @param toolCalls
*
* @aut... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/OpenAIDeveloperMessage.java | package ai.agentscentral.openai.client.request.attributes;
import com.fasterxml.jackson.annotation.JsonUnwrapped;
/**
* OpenAIDeveloperMessage
*
* @param role
* @param name
* @param content
* @author Rizwan Idrees
*/
public record OpenAIDeveloperMessage(String role, String name,
... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/OpenAIMessage.java | package ai.agentscentral.openai.client.request.attributes;
/**
* OpenAIMessage
*
* @author Rizwan Idrees
*/
public interface OpenAIMessage {
String role();
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/OpenAITool.java | package ai.agentscentral.openai.client.request.attributes;
/**
* OpenAITool
*
* @param type
* @param function
* @author Rizwan Idrees
*/
public record OpenAITool(String type, ToolFunction function) {
public static final String FUNCTION = "function";
@Override
public String type() {
return F... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/OpenAIToolCall.java | package ai.agentscentral.openai.client.request.attributes;
/**
* OpenAIToolCall
* @param id
* @param type
* @param function
* @author Rizwan Idrees
*/
public record OpenAIToolCall(String id, String type, ToolCallFunction function) {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/OpenAIToolMessage.java | package ai.agentscentral.openai.client.request.attributes;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonUnwrapped;
/**
* OpenAIToolMessage
*
* @param role
* @param toolCallId
* @param content
* @author Rizwan Idrees
*/
public record OpenAIToolMessage(String ... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/OpenAIUserMessage.java | package ai.agentscentral.openai.client.request.attributes;
import com.fasterxml.jackson.annotation.JsonUnwrapped;
/**
* OpenAIUserMessage
*
* @param role
* @param name
* @param content
* @author Rizwan Idrees
*/
public record OpenAIUserMessage(String role,
String name,
... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/ReasoningEffort.java | package ai.agentscentral.openai.client.request.attributes;
/**
* ReasoningEffort
*
* @author Rizwan Idrees
*/
public enum ReasoningEffort {
low, medium, high
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/RefusalContentPart.java | package ai.agentscentral.openai.client.request.attributes;
/**
* RefusalContentPart
*
* @param type
* @param refusal
* @author Rizwan Idrees
*/
public record RefusalContentPart(String type, String refusal) implements ContentPart {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/ResponseFormat.java | package ai.agentscentral.openai.client.request.attributes;
/**
* ResponseFormat
*
* @author Rizwan Idrees
*/
public interface ResponseFormat {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/SearchContextSize.java | package ai.agentscentral.openai.client.request.attributes;
/**
* SearchContextSize
*
* @author Rizwan Idrees
*/
public enum SearchContextSize {
low, medium, high
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/StreamOptions.java | package ai.agentscentral.openai.client.request.attributes;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* StreamOptions
*
* @param includeUsage
* @author Rizwan Idrees
*/
public record StreamOptions(@JsonProperty("include_usage") boolean includeUsage) {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/TextContent.java | package ai.agentscentral.openai.client.request.attributes;
/**
* TextContent
*
* @param content
* @author Rizwan Idrees
*/
public record TextContent(String content) implements MessageContent {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/TextContentPart.java | package ai.agentscentral.openai.client.request.attributes;
/**
* TextContentPart
*
* @param type
* @param text
* @author Rizwan Idrees
*/
public record TextContentPart(String type, String text) implements ContentPart {
public static final String TEXT = "text";
public String type() {
return TEXT... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/TextResponseFormat.java | package ai.agentscentral.openai.client.request.attributes;
/**
* TextResponseFormat
*
* @param type
* @author Rizwan Idrees
*/
public record TextResponseFormat(String type) implements ResponseFormat {
private static final String TEXT = "text";
@Override
public String type() {
return TEXT;
... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/ToolCallFunction.java | package ai.agentscentral.openai.client.request.attributes;
/**
* ToolCallFunction
*
* @param name
* @param arguments
* @author Rizwan Idrees
*/
public record ToolCallFunction(String name, String arguments) {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/ToolChoice.java | package ai.agentscentral.openai.client.request.attributes;
/**
* ToolChoice
*
* @author Rizwan Idrees
*/
public interface ToolChoice {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/ToolChoiceFunction.java | package ai.agentscentral.openai.client.request.attributes;
/**
* ToolChoiceFunction
*
* @param name
*/
public record ToolChoiceFunction(String name) {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/ToolChoiceFunctionCall.java | package ai.agentscentral.openai.client.request.attributes;
/**
* ToolChoiceFunctionCall
*
* @param type
* @param function
* @author Rizwan Idrees
*/
public record ToolChoiceFunctionCall(String type, ToolChoiceFunction function) implements ToolChoice {
private static final String FUNCTION = "function";
... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/ToolChoiceMode.java | package ai.agentscentral.openai.client.request.attributes;
/**
* ToolChoiceMode
*
* @author Rizwan Idrees
*/
public enum ToolChoiceMode implements ToolChoice {
auto, none
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/ToolFunction.java | package ai.agentscentral.openai.client.request.attributes;
/**
* ToolFunction
*
* @param name
* @param description
* @param parameters
* @param strict
* @author Rizwan Idrees
*/
public record ToolFunction(String name,
String description,
FunctionParameters ... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/TypedFunctionProperty.java | package ai.agentscentral.openai.client.request.attributes;
/**
* TypedFunctionProperty
*
* @param type
* @param description
* @author Rizwan Idrees
*/
public record TypedFunctionProperty(String type, String description) implements FunctionProperty {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/UserLocation.java | package ai.agentscentral.openai.client.request.attributes;
/**
* UserLocation
*
* @param type
* @param approximate
* @author Rizwan Idrees
*/
public record UserLocation(String type, ApproximateLocation approximate) {
private static final String APPROXIMATE = "approximate";
@Override
public String ty... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/request/attributes/WebSearchOptions.java | package ai.agentscentral.openai.client.request.attributes;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* WebSearchOptions
*
* @param searchContextSize
* @param userLocation
* @author Rizwan Idrees
*/
public record WebSearchOptions(@JsonProperty("search_context_size") SearchContextSize searchContex... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response/CompletionResponse.java | package ai.agentscentral.openai.client.response;
import ai.agentscentral.openai.client.response.parameters.Choice;
import ai.agentscentral.openai.client.response.parameters.Usage;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* CompletionResponse
*
* @param id
* @param object
... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response/parameters/Annotation.java | package ai.agentscentral.openai.client.response.parameters;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Annotation
*
* @param type
* @param urlCitation
* @author Rizwan Idrees
*/
public record Annotation(String type, @JsonProperty("url_citation") UrlCitation urlCitation) {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response/parameters/Choice.java | package ai.agentscentral.openai.client.response.parameters;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Choice
*
* @param index
* @param finishReason
* @param logProbs
* @param message
* @author Rizwan Idrees
*/
public record Choice(@JsonProperty("index") Integer index,
@J... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response/parameters/ChoiceMessage.java | package ai.agentscentral.openai.client.response.parameters;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import java.util.Objects;
/**
* ChoiceMessage
*
* @param content
* @param refusal
* @param role
* @param annotations
* @param toolCalls
* @author Rizwan Idrees
*/
public r... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response/parameters/CompletionTokenDetails.java | package ai.agentscentral.openai.client.response.parameters;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* CompletionTokenDetails
*
* @param acceptedPredictionTokens
* @param audioTokens
* @param reasoningTokens
* @param rejectedPredictionTokens
* @author Rizwan Idrees
*/
public record Completion... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response/parameters/Function.java | package ai.agentscentral.openai.client.response.parameters;
/**
* Function
*
* @param name
* @param arguments
* @author Rizwan Idrees
*/
public record Function(String name, String arguments) {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response/parameters/LogProb.java | package ai.agentscentral.openai.client.response.parameters;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* LogProb
*
* @param bytes
* @param logprob
* @param token
* @param top_logprobs
* @author Rizwan Idrees
*/
public record LogProb(byte[] bytes,
In... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response/parameters/LogProbs.java | package ai.agentscentral.openai.client.response.parameters;
/**
* LogProbs
*
* @param content
* @param refusal
* @author Rizwan Idrees
*/
public record LogProbs(LogProb content, LogProb refusal) {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response/parameters/PromptTokenDetails.java | package ai.agentscentral.openai.client.response.parameters;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* PromptTokenDetails
*
* @param audioTokens
* @param cachedTokens
* @author Rizwan Idrees
*/
public record PromptTokenDetails(@JsonProperty("audio_tokens") Integer audioTokens,
... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response/parameters/ToolCall.java | package ai.agentscentral.openai.client.response.parameters;
/**
* ToolCall
*
* @param id
* @param type
* @param function
* @author Rizwan Idrees
*/
public record ToolCall(String id, String type, Function function) {
}
|
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response/parameters/UrlCitation.java | package ai.agentscentral.openai.client.response.parameters;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* UrlCitation
*
* @param endIndex
* @param startIndex
* @param title
* @param url
* @author Rizwan Idrees
*/
public record UrlCitation(@JsonProperty("end_index") Integer endIndex,
... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/client/response/parameters/Usage.java | package ai.agentscentral.openai.client.response.parameters;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Usage
*
* @param completionTokens
* @param promptTokens
* @param totalTokens
* @param completionTokensDetails
* @param promptTokensDetails
* @author Rizwan Idrees
*/
public record Usage(@Js... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/config/OpenAIConfig.java | package ai.agentscentral.openai.config;
import ai.agentscentral.core.model.ModelConfig;
import ai.agentscentral.core.model.ProviderFactory;
import ai.agentscentral.core.provider.ProviderAgentExecutor;
import ai.agentscentral.openai.client.OpenAIClient;
import ai.agentscentral.openai.client.request.attributes.ResponseF... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/factory/OpenAIFactory.java | package ai.agentscentral.openai.factory;
import ai.agentscentral.core.agent.Agent;
import ai.agentscentral.core.factory.AgentJFactory;
import ai.agentscentral.core.model.ProviderFactory;
import ai.agentscentral.openai.client.OpenAIClient;
import ai.agentscentral.openai.processor.OpenAIAgentExecutor;
import jakarta.ann... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/processor/ArgumentExtractor.java | package ai.agentscentral.openai.processor;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.apache.commons.lang3.StringUtils;
import java.util.Map;
/**
* ArgumentExtractor
*
* @author Riz... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/processor/MessageConvertor.java | package ai.agentscentral.openai.processor;
import ai.agentscentral.core.handoff.DefaultHandoffInstruction;
import ai.agentscentral.core.handoff.Handoff;
import ai.agentscentral.core.handoff.HandoffInstruction;
import ai.agentscentral.core.session.message.*;
import ai.agentscentral.core.tool.DefaultToolCallInstruction;... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/processor/OpenAIAgentExecutor.java | package ai.agentscentral.openai.processor;
import ai.agentscentral.core.agent.Agent;
import ai.agentscentral.core.agent.instructor.Instructor;
import ai.agentscentral.core.factory.AgentJFactory;
import ai.agentscentral.core.handoff.Handoff;
import ai.agentscentral.core.provider.ProviderAgentExecutor;
import ai.agentsc... |
0 | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai | java-sources/ai/agentscentral/agentj-openai/0.0.5/ai/agentscentral/openai/processor/OpenAIToolConvertor.java | package ai.agentscentral.openai.processor;
import ai.agentscentral.core.handoff.Handoff;
import ai.agentscentral.core.handoff.HandoffInstruction;
import ai.agentscentral.core.tool.EnumToolParameter;
import ai.agentscentral.core.tool.ToolCall;
import ai.agentscentral.core.tool.ToolCallInstruction;
import ai.agentscentr... |
0 | java-sources/ai/aitia/arrowhead-application-library-java-spring/4.6.0.0/ai/aitia/arrowhead/application | java-sources/ai/aitia/arrowhead-application-library-java-spring/4.6.0.0/ai/aitia/arrowhead/application/library/ArrowheadService.java | /********************************************************************************
* Copyright (c) 2020 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-application-library-java-spring/4.6.0.0/ai/aitia/arrowhead/application/library | java-sources/ai/aitia/arrowhead-application-library-java-spring/4.6.0.0/ai/aitia/arrowhead/application/library/config/ApplicationInitListener.java | /********************************************************************************
* Copyright (c) 2020 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-application-library-java-spring/4.6.0.0/ai/aitia/arrowhead/application/library | java-sources/ai/aitia/arrowhead-application-library-java-spring/4.6.0.0/ai/aitia/arrowhead/application/library/config/DefaultSecurityConfig.java | /********************************************************************************
* Copyright (c) 2020 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-application-library-java-spring/4.6.0.0/ai/aitia/arrowhead/application/library | java-sources/ai/aitia/arrowhead-application-library-java-spring/4.6.0.0/ai/aitia/arrowhead/application/library/util/ApplicationCommonConstants.java | /********************************************************************************
* Copyright (c) 2020 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-application-library-java-spring/4.6.0.0/ai/aitia/arrowhead/application/library | java-sources/ai/aitia/arrowhead-application-library-java-spring/4.6.0.0/ai/aitia/arrowhead/application/library/util/ArrowheadBeans.java | /********************************************************************************
* Copyright (c) 2020 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-application-library-java-spring/4.6.0.0/ai/aitia/arrowhead/application/library | java-sources/ai/aitia/arrowhead-application-library-java-spring/4.6.0.0/ai/aitia/arrowhead/application/library/util/ArrowheadContext.java | package ai.aitia.arrowhead.application.library.util;
import java.util.concurrent.ConcurrentHashMap;
import org.springframework.stereotype.Component;
import eu.arrowhead.common.CommonConstants;
@Component(CommonConstants.ARROWHEAD_CONTEXT)
public class ArrowheadContext extends ConcurrentHashMap<String,Object> {
pr... |
0 | java-sources/ai/aitia/arrowhead-application-library-java-spring/4.6.0.0/ai/aitia/arrowhead/application/library | java-sources/ai/aitia/arrowhead-application-library-java-spring/4.6.0.0/ai/aitia/arrowhead/application/library/util/CoreServiceUri.java | /********************************************************************************
* Copyright (c) 2020 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/CommonConstants.java | /********************************************************************************
* Copyright (c) 2019 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/Defaults.java | /********************************************************************************
* Copyright (c) 2019 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/SSLProperties.java | /********************************************************************************
* Copyright (c) 2019 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/SecurityUtilities.java | /********************************************************************************
* Copyright (c) 2020 FHB
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/Utilities.java | /********************************************************************************
* Copyright (c) 2019 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/core/CoreSystem.java | /********************************************************************************
* Copyright (c) 2019 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/core/CoreSystemService.java | /********************************************************************************
* Copyright (c) 2019 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/ActiveSessionCloseErrorDTO.java | /********************************************************************************
* Copyright (c) 2021 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/AddressType.java | /********************************************************************************
* Copyright (c) 2021 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/CertificateCreationRequestDTO.java | /********************************************************************************
* Copyright (c) 2020 FHB
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/CertificateCreationResponseDTO.java | /********************************************************************************
* Copyright (c) 2020 FHB
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/CertificateType.java | /********************************************************************************
* Copyright (c) 2020 FHB
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/ChoreographerAbortStepRequestDTO.java | /********************************************************************************
* Copyright (c) 2020 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/ChoreographerActionRequestDTO.java | /********************************************************************************
* Copyright (c) 2019 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/ChoreographerActionResponseDTO.java | /********************************************************************************
* Copyright (c) 2019 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/ChoreographerCheckPlanResponseDTO.java | /********************************************************************************
* Copyright (c) 2021 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/ChoreographerExecuteStepRequestDTO.java | /********************************************************************************
* Copyright (c) 2020 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/ChoreographerExecutedStepResultDTO.java | /********************************************************************************
* Copyright (c) 2021 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/ChoreographerExecutedStepStatus.java | /********************************************************************************
* Copyright (c) 2021 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/ChoreographerExecutorRequestDTO.java | /********************************************************************************
* Copyright (c) 2021 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/ChoreographerExecutorResponseDTO.java | /********************************************************************************
* Copyright (c) 2021 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/ChoreographerExecutorServiceDefinitionResponseDTO.java | /********************************************************************************
* Copyright (c) 2021 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/ChoreographerExecutorServiceInfoRequestDTO.java | /********************************************************************************
* Copyright (c) 2021 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/ChoreographerExecutorServiceInfoResponseDTO.java | /********************************************************************************
* Copyright (c) 2021 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
0 | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto | java-sources/ai/aitia/arrowhead-core-common-essentials-java-spring/4.6.0.0/eu/arrowhead/common/dto/shared/ChoreographerNotificationDTO.java | /********************************************************************************
* Copyright (c) 2021 AITIA
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identi... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.