File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
app/src/main/java/org/lfenergy/compas/scl/data/rest/v1/model Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 16
16
import static org .lfenergy .compas .scl .data .SclDataServiceConstants .SCL_DATA_SERVICE_V1_NS_URI ;
17
17
18
18
@ Schema (description = "Request to create a new entry in the database containing the SCL Element content." )
19
- @ XmlRootElement (name = "CreateWsRequest " , namespace = SCL_DATA_SERVICE_V1_NS_URI )
19
+ @ XmlRootElement (name = "CreateRequest " , namespace = SCL_DATA_SERVICE_V1_NS_URI )
20
20
@ XmlAccessorType (XmlAccessType .FIELD )
21
21
public class CreateRequest {
22
22
@ FilenameValid
Original file line number Diff line number Diff line change 13
13
import static org .lfenergy .compas .scl .data .SclDataServiceConstants .SCL_DATA_SERVICE_V1_NS_URI ;
14
14
15
15
@ Schema (description = "Response from creating a new entry in the database containing the SCL Element content." )
16
- @ XmlRootElement (name = "CreateWsResponse " , namespace = SCL_DATA_SERVICE_V1_NS_URI )
16
+ @ XmlRootElement (name = "CreateResponse " , namespace = SCL_DATA_SERVICE_V1_NS_URI )
17
17
@ XmlAccessorType (XmlAccessType .FIELD )
18
18
public class CreateResponse {
19
19
@ Schema (description = "The XML Content of the updated SCL added to the database. The content contains a XML according to the IEC 61850 standard." ,
Original file line number Diff line number Diff line change 14
14
import static org .lfenergy .compas .scl .data .SclDataServiceConstants .SCL_DATA_SERVICE_V1_NS_URI ;
15
15
16
16
@ Schema (description = "Response from retrieving a SCL from the database containing the SCL Content." )
17
- @ XmlRootElement (name = "GetWsResponse " , namespace = SCL_DATA_SERVICE_V1_NS_URI )
17
+ @ XmlRootElement (name = "GetResponse " , namespace = SCL_DATA_SERVICE_V1_NS_URI )
18
18
@ XmlAccessorType (XmlAccessType .FIELD )
19
19
public class GetResponse {
20
20
@ Schema (description = "The XML Content of the retrieved SCL from the database. The content contains a XML according to the IEC 61850 standard." ,
Original file line number Diff line number Diff line change 18
18
19
19
@ Schema (description = "Request to update an existing entry in the database containing the SCL Element content. " +
20
20
"A new version is created and the old version is also kept." )
21
- @ XmlRootElement (name = "UpdateWsRequest " , namespace = SCL_DATA_SERVICE_V1_NS_URI )
21
+ @ XmlRootElement (name = "UpdateRequest " , namespace = SCL_DATA_SERVICE_V1_NS_URI )
22
22
@ XmlAccessorType (XmlAccessType .FIELD )
23
23
public class UpdateRequest {
24
24
@ NotNull (message = "{org.lfenergy.compas.changeset.notnull.message}" )
Original file line number Diff line number Diff line change 14
14
import static org .lfenergy .compas .scl .data .SclDataServiceConstants .SCL_DATA_SERVICE_V1_NS_URI ;
15
15
16
16
@ Schema (description = "Response from updating a new entry in the database containing the SCL Element content." )
17
- @ XmlRootElement (name = "UpdateWsResponse " , namespace = SCL_DATA_SERVICE_V1_NS_URI )
17
+ @ XmlRootElement (name = "UpdateResponse " , namespace = SCL_DATA_SERVICE_V1_NS_URI )
18
18
@ XmlAccessorType (XmlAccessType .FIELD )
19
19
public class UpdateResponse {
20
20
@ Schema (description = "The XML Content of the updated SCL added to the database. The content contains a XML according to the IEC 61850 standard." ,
You can’t perform that action at this time.
0 commit comments