killbill-aplcache

jaxrs: add AuditLogJson This json object will contain audit

7/30/2012 3:18:01 PM

Details

diff --git a/jaxrs/src/main/java/com/ning/billing/jaxrs/json/AuditLogJson.java b/jaxrs/src/main/java/com/ning/billing/jaxrs/json/AuditLogJson.java
new file mode 100644
index 0000000..fb587f4
--- /dev/null
+++ b/jaxrs/src/main/java/com/ning/billing/jaxrs/json/AuditLogJson.java
@@ -0,0 +1,129 @@
+/*
+ * Copyright 2010-2012 Ning, Inc.
+ *
+ * Ning licenses this file to you under the Apache License, version 2.0
+ * (the "License"); you may not use this file except in compliance with the
+ * License.  You may obtain a copy of the License at:
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
+ * License for the specific language governing permissions and limitations
+ * under the License.
+ */
+
+package com.ning.billing.jaxrs.json;
+
+import org.joda.time.DateTime;
+
+import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+public class AuditLogJson {
+
+    private final String changeType;
+    private final DateTime changeDate;
+    private final String changedBy;
+    private final String reasonCode;
+    private final String comments;
+    private final String userToken;
+
+    @JsonCreator
+    public AuditLogJson(@JsonProperty("changeType") final String changeType,
+                        @JsonProperty("changeDate") final DateTime changeDate,
+                        @JsonProperty("changedBy") final String changedBy,
+                        @JsonProperty("reasonCode") final String reasonCode,
+                        @JsonProperty("comments") final String comments,
+                        @JsonProperty("userToken") final String userToken) {
+        this.changeType = changeType;
+        this.changeDate = changeDate;
+        this.changedBy = changedBy;
+        this.reasonCode = reasonCode;
+        this.comments = comments;
+        this.userToken = userToken;
+    }
+
+    public String getChangeType() {
+        return changeType;
+    }
+
+    public DateTime getChangeDate() {
+        return changeDate;
+    }
+
+    public String getChangedBy() {
+        return changedBy;
+    }
+
+    public String getReasonCode() {
+        return reasonCode;
+    }
+
+    public String getComments() {
+        return comments;
+    }
+
+    public String getUserToken() {
+        return userToken;
+    }
+
+    @Override
+    public String toString() {
+        final StringBuilder sb = new StringBuilder();
+        sb.append("AuditLogJson");
+        sb.append("{changeType='").append(changeType).append('\'');
+        sb.append(", changeDate=").append(changeDate);
+        sb.append(", changedBy=").append(changedBy);
+        sb.append(", reasonCode='").append(reasonCode).append('\'');
+        sb.append(", comments='").append(comments).append('\'');
+        sb.append(", userToken='").append(userToken).append('\'');
+        sb.append('}');
+        return sb.toString();
+    }
+
+    @Override
+    public boolean equals(final Object o) {
+        if (this == o) {
+            return true;
+        }
+        if (o == null || getClass() != o.getClass()) {
+            return false;
+        }
+
+        final AuditLogJson that = (AuditLogJson) o;
+
+        if (changeDate != null ? changeDate.compareTo(that.changeDate) != 0 : that.changeDate != null) {
+            return false;
+        }
+        if (changeType != null ? !changeType.equals(that.changeType) : that.changeType != null) {
+            return false;
+        }
+        if (changedBy != null ? !changedBy.equals(that.changedBy) : that.changedBy != null) {
+            return false;
+        }
+        if (comments != null ? !comments.equals(that.comments) : that.comments != null) {
+            return false;
+        }
+        if (reasonCode != null ? !reasonCode.equals(that.reasonCode) : that.reasonCode != null) {
+            return false;
+        }
+        if (userToken != null ? !userToken.equals(that.userToken) : that.userToken != null) {
+            return false;
+        }
+
+        return true;
+    }
+
+    @Override
+    public int hashCode() {
+        int result = changeType != null ? changeType.hashCode() : 0;
+        result = 31 * result + (changeDate != null ? changeDate.hashCode() : 0);
+        result = 31 * result + (changedBy != null ? changedBy.hashCode() : 0);
+        result = 31 * result + (reasonCode != null ? reasonCode.hashCode() : 0);
+        result = 31 * result + (comments != null ? comments.hashCode() : 0);
+        result = 31 * result + (userToken != null ? userToken.hashCode() : 0);
+        return result;
+    }
+}
diff --git a/jaxrs/src/test/java/com/ning/billing/jaxrs/json/TestAuditLogJson.java b/jaxrs/src/test/java/com/ning/billing/jaxrs/json/TestAuditLogJson.java
new file mode 100644
index 0000000..d313c2d
--- /dev/null
+++ b/jaxrs/src/test/java/com/ning/billing/jaxrs/json/TestAuditLogJson.java
@@ -0,0 +1,72 @@
+/*
+ * Copyright 2010-2012 Ning, Inc.
+ *
+ * Ning licenses this file to you under the Apache License, version 2.0
+ * (the "License"); you may not use this file except in compliance with the
+ * License.  You may obtain a copy of the License at:
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
+ * License for the specific language governing permissions and limitations
+ * under the License.
+ */
+
+package com.ning.billing.jaxrs.json;
+
+import java.util.UUID;
+
+import org.joda.time.DateTime;
+import org.testng.Assert;
+import org.testng.annotations.Test;
+
+import com.ning.billing.jaxrs.JaxrsTestSuite;
+import com.ning.billing.util.clock.Clock;
+import com.ning.billing.util.clock.DefaultClock;
+
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.fasterxml.jackson.databind.SerializationFeature;
+import com.fasterxml.jackson.datatype.joda.JodaModule;
+
+public class TestAuditLogJson extends JaxrsTestSuite {
+
+    private static final ObjectMapper mapper = new ObjectMapper();
+
+    private final Clock clock = new DefaultClock();
+
+    static {
+        mapper.registerModule(new JodaModule());
+        mapper.disable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS);
+    }
+
+    @Test(groups = "fast")
+    public void testJson() throws Exception {
+        final String changeType = UUID.randomUUID().toString();
+        final DateTime changeDate = clock.getUTCNow();
+        final String changedBy = UUID.randomUUID().toString();
+        final String reasonCode = UUID.randomUUID().toString();
+        final String comments = UUID.randomUUID().toString();
+        final String userToken = UUID.randomUUID().toString();
+
+        final AuditLogJson auditLogJson = new AuditLogJson(changeType, changeDate, changedBy, reasonCode, comments, userToken);
+        Assert.assertEquals(auditLogJson.getChangeType(), changeType);
+        Assert.assertEquals(auditLogJson.getChangeDate(), changeDate);
+        Assert.assertEquals(auditLogJson.getChangedBy(), changedBy);
+        Assert.assertEquals(auditLogJson.getReasonCode(), reasonCode);
+        Assert.assertEquals(auditLogJson.getComments(), comments);
+        Assert.assertEquals(auditLogJson.getUserToken(), userToken);
+
+        final String asJson = mapper.writeValueAsString(auditLogJson);
+        Assert.assertEquals(asJson, "{\"changeType\":\"" + auditLogJson.getChangeType() + "\"," +
+                                    "\"changeDate\":\"" + auditLogJson.getChangeDate().toDateTimeISO().toString() + "\"," +
+                                    "\"changedBy\":\"" + auditLogJson.getChangedBy() + "\"," +
+                                    "\"reasonCode\":\"" + auditLogJson.getReasonCode() + "\"," +
+                                    "\"comments\":\"" + auditLogJson.getComments() + "\"," +
+                                    "\"userToken\":\"" + auditLogJson.getUserToken() + "\"}");
+
+        final AuditLogJson fromJson = mapper.readValue(asJson, AuditLogJson.class);
+        Assert.assertEquals(fromJson, auditLogJson);
+    }
+}