improve dashboard UI
[portal/ric-dashboard.git] / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / model / SuccessTransport.java
index 4af67c3..c0c9a24 100644 (file)
@@ -1,8 +1,8 @@
 /*-
  * ========================LICENSE_START=================================
- * ORAN-OSC
+ * O-RAN-SC
  * %%
- * Copyright (C) 2019 AT&T Intellectual Property and Nokia
+ * Copyright (C) 2019 AT&T Intellectual Property
  * %%
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -60,4 +60,9 @@ public class SuccessTransport implements IDashboardResponse {
                this.data = data;
        }
 
+       @Override
+       public String toString() {
+               return this.getClass().getName() + "[status=" + getStatus() + ", data=" + getData() + "]";
+       }
+
 }