We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a84a16 commit dc67190Copy full SHA for dc67190
gitlab4j-models/src/main/java/org/gitlab4j/api/models/Application.java
@@ -2,6 +2,8 @@
2
3
import java.io.Serializable;
4
5
+import org.gitlab4j.models.utils.JacksonJson;
6
+
7
public class Application implements Serializable {
8
private static final long serialVersionUID = 1L;
9
@@ -59,4 +61,9 @@ public String getSecret() {
59
61
public void setSecret(String secret) {
60
62
this.secret = secret;
63
}
64
65
+ @Override
66
+ public String toString() {
67
+ return (JacksonJson.toJsonString(this));
68
+ }
69
0 commit comments