Skip to content

Commit b70654f

Browse files
committed
decompile and extract source code of app
1 parent 49e78f8 commit b70654f

443 files changed

Lines changed: 30532 additions & 1 deletion

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

app/api/facade/pom.xml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright 2023 OpenSPG Authors
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
6+
~ in compliance with the License. You may obtain a copy of the License at
7+
~
8+
~ http://www.apache.org/licenses/LICENSE-2.0
9+
~
10+
~ Unless required by applicable law or agreed to in writing, software distributed under the License
11+
~ is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12+
~ or implied.
13+
-->
14+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
16+
<modelVersion>4.0.0</modelVersion>
17+
<parent>
18+
<groupId>com.antgroup.openspg.app</groupId>
19+
<artifactId>app-parent</artifactId>
20+
<version>0.0.1-SNAPSHOT</version>
21+
<relativePath>../../pom.xml</relativePath>
22+
</parent>
23+
24+
<artifactId>app-api-facade</artifactId>
25+
26+
<dependencies>
27+
<dependency>
28+
<groupId>com.antgroup.openspg.server</groupId>
29+
<artifactId>common-model</artifactId>
30+
</dependency>
31+
<dependency>
32+
<groupId>com.antgroup.openspg.app</groupId>
33+
<artifactId>app-core-reasoner-model</artifactId>
34+
</dependency>
35+
<dependency>
36+
<groupId>com.antgroup.openspg.app</groupId>
37+
<artifactId>app-core-builder-model</artifactId>
38+
</dependency>
39+
</dependencies>
40+
</project>
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
package com.antgroup.openspgapp.server.api.facade.dto;
2+
3+
/* loaded from: com.antgroup.openspgapp-api-facade-0.0.1-SNAPSHOT.jar:com/antgroup/openspgapp/server/api/facade/dto/Page.class */
4+
public class Page<T> {
5+
Long total;
6+
Long pageSize;
7+
Long pageNo;
8+
T data;
9+
10+
public void setTotal(final Long total) {
11+
this.total = total;
12+
}
13+
14+
public void setPageSize(final Long pageSize) {
15+
this.pageSize = pageSize;
16+
}
17+
18+
public void setPageNo(final Long pageNo) {
19+
this.pageNo = pageNo;
20+
}
21+
22+
public void setData(final T data) {
23+
this.data = data;
24+
}
25+
26+
public Long getTotal() {
27+
return this.total;
28+
}
29+
30+
public Long getPageSize() {
31+
return this.pageSize;
32+
}
33+
34+
public Long getPageNo() {
35+
return this.pageNo;
36+
}
37+
38+
public T getData() {
39+
return this.data;
40+
}
41+
42+
public Page() {}
43+
44+
public Page(Long pageSize, Long pageNo) {
45+
this.pageSize = pageSize;
46+
this.pageNo = pageNo;
47+
}
48+
}
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
package com.antgroup.openspgapp.server.api.facade.dto.builder;
2+
3+
import com.antgroup.openspg.server.common.model.base.BaseRequest;
4+
import com.antgroup.openspg.server.common.model.bulider.BuilderJob;
5+
import com.antgroup.openspgapp.core.reasoner.model.SubGraph;
6+
7+
/* loaded from: com.antgroup.openspgapp-api-facade-0.0.1-SNAPSHOT.jar:com/antgroup/openspgapp/server/api/facade/dto/builder/BuilderJobSubGraphRequest.class */
8+
public class BuilderJobSubGraphRequest extends BaseRequest {
9+
private static final long serialVersionUID = 2611087767712034352L;
10+
private SubGraph subGraph;
11+
private BuilderJob job;
12+
13+
public SubGraph getSubGraph() {
14+
return this.subGraph;
15+
}
16+
17+
public void setSubGraph(SubGraph subGraph) {
18+
this.subGraph = subGraph;
19+
}
20+
21+
public BuilderJob getJob() {
22+
return this.job;
23+
}
24+
25+
public void setJob(BuilderJob job) {
26+
this.job = job;
27+
}
28+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
package com.antgroup.openspgapp.server.api.facade.dto.builder;
2+
3+
import com.antgroup.openspg.server.common.model.base.BaseRequest;
4+
import com.antgroup.openspgapp.core.reasoner.model.SubGraph;
5+
6+
/* loaded from: com.antgroup.openspgapp-api-facade-0.0.1-SNAPSHOT.jar:com/antgroup/openspgapp/server/api/facade/dto/builder/WriterGraphRequest.class */
7+
public class WriterGraphRequest extends BaseRequest {
8+
private static final long serialVersionUID = -5051318132737772511L;
9+
private SubGraph subGraph;
10+
private String operation;
11+
Long projectId;
12+
13+
public WriterGraphRequest() {}
14+
15+
public WriterGraphRequest(SubGraph subGraph, String operation, Long projectId) {
16+
this.subGraph = subGraph;
17+
this.operation = operation;
18+
this.projectId = projectId;
19+
}
20+
21+
public SubGraph getSubGraph() {
22+
return this.subGraph;
23+
}
24+
25+
public void setSubGraph(SubGraph subGraph) {
26+
this.subGraph = subGraph;
27+
}
28+
29+
public String getOperation() {
30+
return this.operation;
31+
}
32+
33+
public void setOperation(String operation) {
34+
this.operation = operation;
35+
}
36+
37+
public Long getProjectId() {
38+
return this.projectId;
39+
}
40+
41+
public void setProjectId(Long projectId) {
42+
this.projectId = projectId;
43+
}
44+
}
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
package com.antgroup.openspgapp.server.api.facade.dto.reasoner.session;
2+
3+
import com.antgroup.openspg.server.common.model.base.BaseRequest;
4+
5+
/* loaded from: com.antgroup.openspgapp-api-facade-0.0.1-SNAPSHOT.jar:com/antgroup/openspgapp/server/api/facade/dto/reasoner/session/CreateSessionRequest.class */
6+
public class CreateSessionRequest extends BaseRequest {
7+
private static final long serialVersionUID = 288748585428580417L;
8+
private Long projectId;
9+
private Long userId;
10+
private String name;
11+
private String description;
12+
13+
public CreateSessionRequest(Long projectId, Long userId, String name, String description) {
14+
this.projectId = projectId;
15+
this.userId = userId;
16+
this.name = name;
17+
this.description = description;
18+
}
19+
20+
public Long getProjectId() {
21+
return this.projectId;
22+
}
23+
24+
public void setProjectId(Long projectId) {
25+
this.projectId = projectId;
26+
}
27+
28+
public Long getUserId() {
29+
return this.userId;
30+
}
31+
32+
public void setUserId(Long userId) {
33+
this.userId = userId;
34+
}
35+
36+
public String getName() {
37+
return this.name;
38+
}
39+
40+
public void setName(String name) {
41+
this.name = name;
42+
}
43+
44+
public String getDescription() {
45+
return this.description;
46+
}
47+
48+
public void setDescription(String description) {
49+
this.description = description;
50+
}
51+
}
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
package com.antgroup.openspgapp.server.api.facade.dto.reasoner.session;
2+
3+
import com.antgroup.openspg.server.common.model.base.BaseRequest;
4+
5+
/* loaded from: com.antgroup.openspgapp-api-facade-0.0.1-SNAPSHOT.jar:com/antgroup/openspgapp/server/api/facade/dto/reasoner/session/ListSessionRequest.class */
6+
public class ListSessionRequest extends BaseRequest {
7+
private static final long serialVersionUID = 2793740486506426124L;
8+
private Long projectId;
9+
private Long userId;
10+
private Integer limit;
11+
12+
public ListSessionRequest() {}
13+
14+
public ListSessionRequest(Long projectId, Long userId, Integer limit) {
15+
this.projectId = projectId;
16+
this.userId = userId;
17+
this.limit = limit;
18+
}
19+
20+
public Long getProjectId() {
21+
return this.projectId;
22+
}
23+
24+
public void setProjectId(Long projectId) {
25+
this.projectId = projectId;
26+
}
27+
28+
public Long getUserId() {
29+
return this.userId;
30+
}
31+
32+
public void setUserId(Long userId) {
33+
this.userId = userId;
34+
}
35+
36+
public Integer getLimit() {
37+
return this.limit;
38+
}
39+
40+
public void setLimit(Integer limit) {
41+
this.limit = limit;
42+
}
43+
}
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
package com.antgroup.openspgapp.server.api.facade.dto.reasoner.session;
2+
3+
import com.antgroup.openspg.server.common.model.base.BaseResponse;
4+
5+
/* loaded from: com.antgroup.openspgapp-api-facade-0.0.1-SNAPSHOT.jar:com/antgroup/openspgapp/server/api/facade/dto/reasoner/session/SessionResponse.class */
6+
public class SessionResponse extends BaseResponse {
7+
private static final long serialVersionUID = 7549125593003891395L;
8+
private Long id;
9+
private Long projectId;
10+
private Long userId;
11+
private String name;
12+
private String description;
13+
14+
public Long getId() {
15+
return this.id;
16+
}
17+
18+
public void setId(Long id) {
19+
this.id = id;
20+
}
21+
22+
public Long getProjectId() {
23+
return this.projectId;
24+
}
25+
26+
public void setProjectId(Long projectId) {
27+
this.projectId = projectId;
28+
}
29+
30+
public Long getUserId() {
31+
return this.userId;
32+
}
33+
34+
public void setUserId(Long userId) {
35+
this.userId = userId;
36+
}
37+
38+
public String getName() {
39+
return this.name;
40+
}
41+
42+
public void setName(String name) {
43+
this.name = name;
44+
}
45+
46+
public String getDescription() {
47+
return this.description;
48+
}
49+
50+
public void setDescription(String description) {
51+
this.description = description;
52+
}
53+
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
package com.antgroup.openspgapp.server.api.facade.dto.reasoner.session;
2+
3+
/* loaded from: com.antgroup.openspgapp-api-facade-0.0.1-SNAPSHOT.jar:com/antgroup/openspgapp/server/api/facade/dto/reasoner/session/UpdateSessionRequest.class */
4+
public class UpdateSessionRequest extends CreateSessionRequest {
5+
private static final long serialVersionUID = 2721946536933394886L;
6+
private Long id;
7+
8+
public UpdateSessionRequest(Long projectId, Long userId, String name, String description) {
9+
super(projectId, userId, name, description);
10+
}
11+
12+
public UpdateSessionRequest(
13+
Long id, Long projectId, Long userId, String name, String description) {
14+
super(projectId, userId, name, description);
15+
this.id = id;
16+
}
17+
18+
public Long getId() {
19+
return this.id;
20+
}
21+
22+
public void setId(Long id) {
23+
this.id = id;
24+
}
25+
}

0 commit comments

Comments
 (0)