Skip to content

Commit

Permalink
Sync proto project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasHafner committed May 5, 2024
1 parent ab90ed6 commit 0c12ae8
Show file tree
Hide file tree
Showing 17 changed files with 33 additions and 33 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ option java_multiple_files = true;
option java_package = "org.polypheny.prism";
option java_outer_classname = "ConnectionRequests";

package polypheny.protointerface;
package polypheny.prism;

/*
The ConnectionRequest message is designed to initiate a connection request from the client to the server.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ option java_multiple_files = true;
option java_package = "org.polypheny.prism";
option java_outer_classname = "ConnectionResponses";

package polypheny.protointerface;
package polypheny.prism;

/*
The ConnectionResponse message is sent by the server in response to a ConnectionRequest from the client.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ Messages pertaining to document frames as used to represent results from the doc

syntax = "proto3";

import "polyprism/value.proto";
import "value.proto";

option java_multiple_files = true;
option java_package = "org.polypheny.prism";
option java_outer_classname = "DocumentResultProto";

package polypheny.protointerface;
package polypheny.prism;

/*
The DocumentFrame message represents a frame containing one or more documents and is used to relay results or data entries structured as documents from the server to the client.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ option java_multiple_files = true;
option java_package = "org.polypheny.prism";
option java_outer_classname = "Error";

package polypheny.protointerface;
package polypheny.prism;

/*
The ErrorDetails message conveys specific information about an error encountered during the processing of a request.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ option java_multiple_files = true;
option java_package = "org.polypheny.prism";
option java_outer_classname = "GraphResultProto";

package polypheny.protointerface;
package polypheny.prism;

/*
The GraphFrame message is a placeholder intended to represent graph frames as part of the labeled property graph model.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ option java_multiple_files = true;
option java_package = "org.polypheny.prism";
option java_outer_classname = "MetaRequests";

package polypheny.protointerface;
package polypheny.prism;

/*
The DbmsVersionRequest message is utilized to request the version information of the database management system (DBMS) in use.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ option java_multiple_files = true;
option java_package = "org.polypheny.prism";
option java_outer_classname = "MetaResponses";

package polypheny.protointerface;
package polypheny.prism;

/*
The DbmsVersionResponse message relays details about the version and name of the database management system (DBMS) in response to a DbmsVersionRequest.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ option java_multiple_files = true;
option java_package = "org.polypheny.prism";
option java_outer_classname = "NamespaceMeta";

package polypheny.protointerface;
package polypheny.prism;

/*
The NamespacesRequest message allows querying for namespaces based on specific patterns in their names as well as their types.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ option java_multiple_files = true;
option java_package = "org.polypheny.prism";
option java_outer_classname = "NamespaceMetaResponses";

package polypheny.protointerface;
package polypheny.prism;

/*
The NamespacesResponse message delivers a list of namespaces based on the provided criteria in the NamespacesRequest.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ Further messages for error responses are included.

syntax = "proto3";

import "polyprism/connection_requests.proto";
import "polyprism/connection_responses.proto";
import "polyprism/meta_requests.proto";
import "polyprism/meta_responses.proto";
import "polyprism/namespace_meta_requests.proto";
import "polyprism/namespace_meta_responses.proto";
import "polyprism/statement_requests.proto";
import "polyprism/statement_responses.proto";
import "polyprism/transaction_requests.proto";
import "polyprism/transaction_responses.proto";
import "polyprism/value.proto";
import "connection_requests.proto";
import "connection_responses.proto";
import "meta_requests.proto";
import "meta_responses.proto";
import "namespace_meta_requests.proto";
import "namespace_meta_responses.proto";
import "statement_requests.proto";
import "statement_responses.proto";
import "transaction_requests.proto";
import "transaction_responses.proto";
import "value.proto";

option java_multiple_files = true;
option java_package = "org.polypheny.prism";
option java_outer_classname = "ProtoInterfaceProto";

package polypheny.protointerface;
package polypheny.prism;

/*
Wrapper message wrapping a specific request message to be sent to the server.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ Messages related to relational frames as used to represent the results form the

syntax = "proto3";

import "polyprism/value.proto";
import "value.proto";

option java_multiple_files = true;
option java_package = "org.polypheny.prism";
option java_outer_classname = "RelationalResult";

package polypheny.protointerface;
package polypheny.prism;

/*
The RelationalFrame message encapsulates the structure of a relational frame, which includes metadata about columns and rows of data within a relational table.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ Messages related to statements in a query language and their results.

syntax = "proto3";

import "polyprism/value.proto";
import "value.proto";

option java_multiple_files = true;
option java_package = "org.polypheny.prism";
option java_outer_classname = "StatementRequests";

package polypheny.protointerface;
package polypheny.prism;

/*
Closes the result set of the statement matching the specified statement id. If no such statement exists, or the result is already closed, this request is ignored.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ Messages related to statements in a query language and their results.

syntax = "proto3";

import "polyprism/relational_frame.proto";
import "polyprism/graph_frame.proto";
import "polyprism/document_frame.proto";
import "relational_frame.proto";
import "graph_frame.proto";
import "document_frame.proto";

option java_multiple_files = true;
option java_package = "org.polypheny.prism";
option java_outer_classname = "StatementResponses";

package polypheny.protointerface;
package polypheny.prism;

/*
Response of the server on the request of a client to close the result set of a specific statement.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ option java_multiple_files = true;
option java_package = "org.polypheny.prism";
option java_outer_classname = "TransactionRequests";

package polypheny.protointerface;
package polypheny.prism;

/*
Represents a request to commit a transaction.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ option java_multiple_files = true;
option java_package = "org.polypheny.prism";
option java_outer_classname = "TransactionResponses";

package polypheny.protointerface;
package polypheny.prism;

/*
Represents the response after attempting to commit a transaction.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ option java_multiple_files = true;
option java_package = "org.polypheny.prism";
option java_outer_classname = "ProtoValueProto";

package polypheny.protointerface;
package polypheny.prism;

// Specifies the type of a proto value. This enum contains a value for each datatype supported by the DBMS.
enum ProtoPolyType {
Expand Down
File renamed without changes.

0 comments on commit 0c12ae8

Please sign in to comment.