Skip to content

Commit aa671a0

Browse files
author
BitsAdmin
committed
Merge branch 'edx-Java-2023-04-20-online-1073-2025_04_01_20_09_33' into 'integration_2025-04-10_853973186050'
feat: [development task] edx-1073-Java (1145193) See merge request iaasng/volcengine-java-sdk!435
2 parents dfa6ab6 + 3808b18 commit aa671a0

File tree

170 files changed

+30861
-0
lines changed

Some content is hidden

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

170 files changed

+30861
-0
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,5 +274,6 @@
274274
<module>volcengine-java-sdk-clouddetect</module>
275275
<module>volcengine-java-sdk-translate20250301</module>
276276
<module>volcengine-java-sdk-volccontentplatform</module>
277+
<module>volcengine-java-sdk-edx</module>
277278
</modules>
278279
</project>

volcengine-java-sdk-bom/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,12 @@
409409
<optional>false</optional>
410410
<version>${project.version}</version>
411411
</dependency>
412+
<dependency>
413+
<groupId>com.volcengine</groupId>
414+
<artifactId>volcengine-java-sdk-edx</artifactId>
415+
<optional>false</optional>
416+
<version>${project.version}</version>
417+
</dependency>
412418
</dependencies>
413419
</dependencyManagement>
414420
</project>

volcengine-java-sdk-edx/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+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<parent>
4+
<artifactId>volcengine-java-sdk</artifactId>
5+
<groupId>com.volcengine</groupId>
6+
<version>0.2.2</version>
7+
<relativePath>../pom.xml</relativePath>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
10+
<artifactId>volcengine-java-sdk-edx</artifactId>
11+
<dependencies>
12+
<dependency>
13+
<groupId>com.volcengine</groupId>
14+
<artifactId>volcengine-java-sdk-core</artifactId>
15+
<version>${project.version}</version>
16+
</dependency>
17+
</dependencies>
18+
<build>
19+
<plugins>
20+
<plugin>
21+
<groupId>org.apache.maven.plugins</groupId>
22+
<artifactId>maven-source-plugin</artifactId>
23+
<configuration>
24+
<excludes>
25+
<exclude>com/volcengine/edx/examples/**</exclude>
26+
</excludes>
27+
</configuration>
28+
</plugin>
29+
<plugin>
30+
<groupId>org.apache.maven.plugins</groupId>
31+
<artifactId>maven-jar-plugin</artifactId>
32+
<configuration>
33+
<excludes>
34+
<exclude>com/volcengine/edx/examples/**</exclude>
35+
</excludes>
36+
</configuration>
37+
</plugin>
38+
</plugins>
39+
</build>
40+
</project>

volcengine-java-sdk-edx/src/main/java/com/volcengine/edx/EdxApi.java

Lines changed: 8246 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 150 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
1+
/*
2+
* edx
3+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4+
*
5+
* OpenAPI spec version: common-version
6+
*
7+
*
8+
* NOTE: This class is auto generated by the swagger code generator program.
9+
* https://github.com/swagger-api/swagger-codegen.git
10+
* Do not edit the class manually.
11+
*/
12+
13+
package com.volcengine.edx.model;
14+
15+
import java.util.Objects;
16+
import java.util.Arrays;
17+
import com.google.gson.TypeAdapter;
18+
import com.google.gson.annotations.JsonAdapter;
19+
import com.google.gson.annotations.SerializedName;
20+
import com.google.gson.stream.JsonReader;
21+
import com.google.gson.stream.JsonWriter;
22+
import io.swagger.v3.oas.annotations.media.Schema;
23+
import java.io.IOException;
24+
import java.util.ArrayList;
25+
import java.util.List;
26+
import javax.validation.constraints.*;
27+
import javax.validation.Valid;
28+
/**
29+
* APListForListDXPAccessPointsOutput
30+
*/
31+
32+
33+
34+
public class APListForListDXPAccessPointsOutput {
35+
@SerializedName("AP")
36+
private String AP = null;
37+
38+
@SerializedName("Building")
39+
private String building = null;
40+
41+
@SerializedName("ISPList")
42+
private List<String> isPList = null;
43+
44+
public APListForListDXPAccessPointsOutput AP(String AP) {
45+
this.AP = AP;
46+
return this;
47+
}
48+
49+
/**
50+
* Get AP
51+
* @return AP
52+
**/
53+
@Schema(description = "")
54+
public String getAP() {
55+
return AP;
56+
}
57+
58+
public void setAP(String AP) {
59+
this.AP = AP;
60+
}
61+
62+
public APListForListDXPAccessPointsOutput building(String building) {
63+
this.building = building;
64+
return this;
65+
}
66+
67+
/**
68+
* Get building
69+
* @return building
70+
**/
71+
@Schema(description = "")
72+
public String getBuilding() {
73+
return building;
74+
}
75+
76+
public void setBuilding(String building) {
77+
this.building = building;
78+
}
79+
80+
public APListForListDXPAccessPointsOutput isPList(List<String> isPList) {
81+
this.isPList = isPList;
82+
return this;
83+
}
84+
85+
public APListForListDXPAccessPointsOutput addIsPListItem(String isPListItem) {
86+
if (this.isPList == null) {
87+
this.isPList = new ArrayList<String>();
88+
}
89+
this.isPList.add(isPListItem);
90+
return this;
91+
}
92+
93+
/**
94+
* Get isPList
95+
* @return isPList
96+
**/
97+
@Schema(description = "")
98+
public List<String> getIsPList() {
99+
return isPList;
100+
}
101+
102+
public void setIsPList(List<String> isPList) {
103+
this.isPList = isPList;
104+
}
105+
106+
107+
@Override
108+
public boolean equals(java.lang.Object o) {
109+
if (this == o) {
110+
return true;
111+
}
112+
if (o == null || getClass() != o.getClass()) {
113+
return false;
114+
}
115+
APListForListDXPAccessPointsOutput apListForListDXPAccessPointsOutput = (APListForListDXPAccessPointsOutput) o;
116+
return Objects.equals(this.AP, apListForListDXPAccessPointsOutput.AP) &&
117+
Objects.equals(this.building, apListForListDXPAccessPointsOutput.building) &&
118+
Objects.equals(this.isPList, apListForListDXPAccessPointsOutput.isPList);
119+
}
120+
121+
@Override
122+
public int hashCode() {
123+
return Objects.hash(AP, building, isPList);
124+
}
125+
126+
127+
@Override
128+
public String toString() {
129+
StringBuilder sb = new StringBuilder();
130+
sb.append("class APListForListDXPAccessPointsOutput {\n");
131+
132+
sb.append(" AP: ").append(toIndentedString(AP)).append("\n");
133+
sb.append(" building: ").append(toIndentedString(building)).append("\n");
134+
sb.append(" isPList: ").append(toIndentedString(isPList)).append("\n");
135+
sb.append("}");
136+
return sb.toString();
137+
}
138+
139+
/**
140+
* Convert the given object to string with each line indented by 4 spaces
141+
* (except the first line).
142+
*/
143+
private String toIndentedString(java.lang.Object o) {
144+
if (o == null) {
145+
return "null";
146+
}
147+
return o.toString().replace("\n", "\n ");
148+
}
149+
150+
}

0 commit comments

Comments
 (0)