-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ISSUE #21] Implement Connection related code #22
Conversation
ADD: connection related code: Connection/Client/Connector: Mapper,Entity Connection: ConnectionService,ConnectionDataService others: eventmesh-dashboard.sql test resources MODIFY: pom file: remove dependency of junit, spring-boot-starter-test contains it. pom file: let service module depend on core module.
...onsole/src/main/java/org/apache/eventmesh/dashboard/console/EventmeshConsoleApplication.java
Outdated
Show resolved
Hide resolved
...console/src/main/java/org/apache/eventmesh/dashboard/console/entity/client/ClientEntity.java
Outdated
Show resolved
Hide resolved
...src/main/java/org/apache/eventmesh/dashboard/console/entity/connection/ConnectionEntity.java
Outdated
Show resolved
Hide resolved
...src/main/java/org/apache/eventmesh/dashboard/console/entity/connection/ConnectionEntity.java
Outdated
Show resolved
Hide resolved
...e/src/main/java/org/apache/eventmesh/dashboard/console/entity/connector/ConnectorEntity.java
Outdated
Show resolved
Hide resolved
...e/src/main/java/org/apache/eventmesh/dashboard/console/entity/connector/ConnectorEntity.java
Outdated
Show resolved
Hide resolved
...console/src/main/java/org/apache/eventmesh/dashboard/console/entity/client/ClientEntity.java
Outdated
Show resolved
Hide resolved
...console/src/main/java/org/apache/eventmesh/dashboard/console/mapper/client/ClientMapper.java
Outdated
Show resolved
Hide resolved
eventmesh-dashboard-console/src/main/resources/application-dev.yml
Outdated
Show resolved
Hide resolved
# Conflicts: # eventmesh-dashboard-common/src/main/java/org/apache/eventmesh/dashboard/common/Main.java # eventmesh-dashboard-console/src/main/java/org/apache/eventmesh/dashboard/console/EventMeshDashboardApplication.java
...console/src/main/java/org/apache/eventmesh/dashboard/console/entity/client/ClientEntity.java
Outdated
Show resolved
Hide resolved
...-console/src/main/java/org/apache/eventmesh/dashboard/console/enums/KubernetesPodStatus.java
Outdated
Show resolved
Hide resolved
...-console/src/main/java/org/apache/eventmesh/dashboard/console/enums/KubernetesPodStatus.java
Outdated
Show resolved
Hide resolved
@Schema(description = "Dimension of Health Check;0:Unknown, 1:Cluster, 2:Runtime, 3:Topic, 4:Group", defaultValue = "0", allowableValues = {"0", | ||
"1", "2", "3", "4"}) | ||
private Integer dimension; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Dimension" is an abstract word. How about "serviceType"?
It will be better to use Enum as class type here. The same as the ConnectorEntity
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you think ServiceType means?
How about just call it checkType?
.../main/java/org/apache/eventmesh/dashboard/console/entity/health/HealthCheckResultEntity.java
Outdated
Show resolved
Hide resolved
add enum support for entity class.
fixes #21
ADD:
connection related code:
Connection/Client/Connector: Mapper,Entity
Connection: ConnectionService,ConnectionDataService
others:
eventmesh-dashboard.sql
test resources
MODIFY:
pom file: remove dependency of junit, spring-boot-starter-test contains it.
pom file: let service module depend on core module.