Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@
*
*/
@XmlRootElement(namespace = "uri:org.apache.cxf.javascript.testns")
@XmlType(namespace = "uri:org.apache.cxf.javascript.testns")
@XmlType(namespace = "uri:org.apache.cxf.javascript.testns",
propOrder = {
"element1",
"attribute1",
"element2",
"attribute2"
Comment on lines +33 to +36

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure what the style here should be, but did you check if you need an extra indentation here?

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes there were some styling rules for this repo and the indentation is provided adhering to all those rules, otherwise the build was failing.

})
public class AttributeTestBean {

//CHECKSTYLE:OFF
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,21 @@
* Bean with a selection of elements suitable for testing the JavaScript client.
*/
@XmlRootElement(namespace = "uri:org.apache.cxf.javascript.testns")
@XmlType(namespace = "uri:org.apache.cxf.javascript.testns")
@XmlType(namespace = "uri:org.apache.cxf.javascript.testns",
propOrder = {
"stringItem",
"intItem",
"longItem",
"base64Item",
"optionalIntItem",
"optionalStringItem",
"optionalIntArrayItem",
"doubleItem",
"beanTwoItem",
"beanTwoNotRequiredItem",
"enumeration",
"enum2"
Comment on lines +34 to +45

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same

})
public class TestBean1 {

public TestBean1() {
Expand Down