-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Adriano Santos
committed
Aug 23, 2024
1 parent
3605944
commit e98281d
Showing
33 changed files
with
67,868 additions
and
2,842 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
java-std/{{cookiecutter.app_name}}/src/main/proto/actors/postalcode.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
syntax = "proto3"; | ||
|
||
package domain.actors; | ||
|
||
import "google/api/annotations.proto"; | ||
import "eigr/functions/protocol/actors/extensions.proto"; | ||
|
||
option java_package = "domain.actors"; | ||
option java_outer_classname = "ActorsProto"; | ||
|
||
enum PostalCodeStatus { | ||
UNKNOWN = 0; | ||
CREATED = 1; | ||
NOT_FOUND = 2; | ||
FOUND = 3; | ||
} | ||
|
||
message PostalCodeState { | ||
string code = 1; | ||
PostalCodeStatus status = 2; | ||
string country = 3; | ||
string street = 4; | ||
string state = 5; | ||
string city = 6; | ||
} | ||
|
||
message GetRequest { | ||
string code = 1 [(.eigr.functions.protocol.actors.actor_id) = true]; | ||
} | ||
|
||
message GetResponse { PostalCodeState postal_code = 1; } | ||
|
||
// Router Actor | ||
service Router { | ||
rpc GetPostalCode(GetRequest) returns (GetResponse) { | ||
option (google.api.http) = { | ||
get: "/v1/postalcode/{code}", | ||
body: "*" | ||
}; | ||
} | ||
} | ||
|
||
// PostalCode Actor | ||
service PostalCode { | ||
rpc GetPostalCodeData(GetRequest) returns (GetResponse) { | ||
option (google.api.http) = { | ||
get : "/v1/internal/postalcodes/{code}" | ||
}; | ||
} | ||
} | ||
|
12 changes: 0 additions & 12 deletions
12
java-std/{{cookiecutter.app_name}}/src/main/proto/domain/actors/postalcode.proto
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
java-std/{{cookiecutter.app_name}}/src/main/proto/domain/actors/router.proto
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
java-std/{{cookiecutter.app_name}}/src/main/proto/domain/common.proto
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
.../{{cookiecutter.app_name}}/src/main/proto/eigr/functions/protocol/actors/extensions.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
syntax = "proto3"; | ||
|
||
package eigr.functions.protocol.actors; | ||
|
||
import "google/protobuf/descriptor.proto"; | ||
|
||
extend google.protobuf.FieldOptions { | ||
bool actor_id = 9999; | ||
} |
31 changes: 31 additions & 0 deletions
31
java-std/{{cookiecutter.app_name}}/src/main/proto/google/api/annotations.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// Copyright 2024 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
syntax = "proto3"; | ||
|
||
package google.api; | ||
|
||
import "google/api/http.proto"; | ||
import "google/protobuf/descriptor.proto"; | ||
|
||
option go_package = "google.golang.org/genproto/googleapis/api/annotations;annotations"; | ||
option java_multiple_files = true; | ||
option java_outer_classname = "AnnotationsProto"; | ||
option java_package = "com.google.api"; | ||
option objc_class_prefix = "GAPI"; | ||
|
||
extend google.protobuf.MethodOptions { | ||
// See `HttpRule`. | ||
HttpRule http = 72295728; | ||
} |
Oops, something went wrong.