diff --git a/src/main/proto/polyprism/connection_requests.proto b/src/main/proto/connection_requests.proto similarity index 98% rename from src/main/proto/polyprism/connection_requests.proto rename to src/main/proto/connection_requests.proto index f17bdab..c9355a4 100644 --- a/src/main/proto/polyprism/connection_requests.proto +++ b/src/main/proto/connection_requests.proto @@ -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. diff --git a/src/main/proto/polyprism/connection_responses.proto b/src/main/proto/connection_responses.proto similarity index 98% rename from src/main/proto/polyprism/connection_responses.proto rename to src/main/proto/connection_responses.proto index d75e82a..6e88409 100644 --- a/src/main/proto/polyprism/connection_responses.proto +++ b/src/main/proto/connection_responses.proto @@ -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. diff --git a/src/main/proto/polyprism/document_frame.proto b/src/main/proto/document_frame.proto similarity index 90% rename from src/main/proto/polyprism/document_frame.proto rename to src/main/proto/document_frame.proto index 0d00d02..a479e18 100644 --- a/src/main/proto/polyprism/document_frame.proto +++ b/src/main/proto/document_frame.proto @@ -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. diff --git a/src/main/proto/polyprism/error.proto b/src/main/proto/error.proto similarity index 96% rename from src/main/proto/polyprism/error.proto rename to src/main/proto/error.proto index 7481e67..c4d7860 100644 --- a/src/main/proto/polyprism/error.proto +++ b/src/main/proto/error.proto @@ -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. diff --git a/src/main/proto/polyprism/graph_frame.proto b/src/main/proto/graph_frame.proto similarity index 95% rename from src/main/proto/polyprism/graph_frame.proto rename to src/main/proto/graph_frame.proto index 715a614..912a6c6 100644 --- a/src/main/proto/polyprism/graph_frame.proto +++ b/src/main/proto/graph_frame.proto @@ -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. diff --git a/src/main/proto/polyprism/meta_requests.proto b/src/main/proto/meta_requests.proto similarity index 99% rename from src/main/proto/polyprism/meta_requests.proto rename to src/main/proto/meta_requests.proto index 90a3c65..6f2cf64 100644 --- a/src/main/proto/polyprism/meta_requests.proto +++ b/src/main/proto/meta_requests.proto @@ -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. diff --git a/src/main/proto/polyprism/meta_responses.proto b/src/main/proto/meta_responses.proto similarity index 99% rename from src/main/proto/polyprism/meta_responses.proto rename to src/main/proto/meta_responses.proto index eb5d8cc..65a636c 100644 --- a/src/main/proto/polyprism/meta_responses.proto +++ b/src/main/proto/meta_responses.proto @@ -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. diff --git a/src/main/proto/polyprism/namespace_meta_requests.proto b/src/main/proto/namespace_meta_requests.proto similarity index 97% rename from src/main/proto/polyprism/namespace_meta_requests.proto rename to src/main/proto/namespace_meta_requests.proto index 9e1dbb0..f443827 100644 --- a/src/main/proto/polyprism/namespace_meta_requests.proto +++ b/src/main/proto/namespace_meta_requests.proto @@ -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. diff --git a/src/main/proto/polyprism/namespace_meta_responses.proto b/src/main/proto/namespace_meta_responses.proto similarity index 99% rename from src/main/proto/polyprism/namespace_meta_responses.proto rename to src/main/proto/namespace_meta_responses.proto index 8adbcaf..63725bd 100644 --- a/src/main/proto/polyprism/namespace_meta_responses.proto +++ b/src/main/proto/namespace_meta_responses.proto @@ -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. diff --git a/src/main/proto/polyprism/protointerface.proto b/src/main/proto/protointerface.proto similarity index 89% rename from src/main/proto/polyprism/protointerface.proto rename to src/main/proto/protointerface.proto index 57e4127..8cade75 100644 --- a/src/main/proto/polyprism/protointerface.proto +++ b/src/main/proto/protointerface.proto @@ -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. diff --git a/src/main/proto/polyprism/relational_frame.proto b/src/main/proto/relational_frame.proto similarity index 98% rename from src/main/proto/polyprism/relational_frame.proto rename to src/main/proto/relational_frame.proto index 23569f3..9a1502c 100644 --- a/src/main/proto/polyprism/relational_frame.proto +++ b/src/main/proto/relational_frame.proto @@ -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. diff --git a/src/main/proto/polyprism/statement_requests.proto b/src/main/proto/statement_requests.proto similarity index 98% rename from src/main/proto/polyprism/statement_requests.proto rename to src/main/proto/statement_requests.proto index eb949ff..48706a3 100644 --- a/src/main/proto/polyprism/statement_requests.proto +++ b/src/main/proto/statement_requests.proto @@ -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. diff --git a/src/main/proto/polyprism/statement_responses.proto b/src/main/proto/statement_responses.proto similarity index 96% rename from src/main/proto/polyprism/statement_responses.proto rename to src/main/proto/statement_responses.proto index 59a3b82..96423f5 100644 --- a/src/main/proto/polyprism/statement_responses.proto +++ b/src/main/proto/statement_responses.proto @@ -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. diff --git a/src/main/proto/polyprism/transaction_requests.proto b/src/main/proto/transaction_requests.proto similarity index 96% rename from src/main/proto/polyprism/transaction_requests.proto rename to src/main/proto/transaction_requests.proto index 0355401..6ff7fa1 100644 --- a/src/main/proto/polyprism/transaction_requests.proto +++ b/src/main/proto/transaction_requests.proto @@ -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. diff --git a/src/main/proto/polyprism/transaction_responses.proto b/src/main/proto/transaction_responses.proto similarity index 96% rename from src/main/proto/polyprism/transaction_responses.proto rename to src/main/proto/transaction_responses.proto index 7f00bdb..22e77a0 100644 --- a/src/main/proto/polyprism/transaction_responses.proto +++ b/src/main/proto/transaction_responses.proto @@ -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. diff --git a/src/main/proto/polyprism/value.proto b/src/main/proto/value.proto similarity index 99% rename from src/main/proto/polyprism/value.proto rename to src/main/proto/value.proto index 86ff704..75c6337 100644 --- a/src/main/proto/polyprism/value.proto +++ b/src/main/proto/value.proto @@ -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 { diff --git a/src/main/proto/polyprism/version.properties b/src/main/proto/version.properties similarity index 100% rename from src/main/proto/polyprism/version.properties rename to src/main/proto/version.properties