/** * */ package com.thinkbiganalytics.audit.rest.model; /*- * #%L * thinkbig-audit-logging-rest-model * %% * Copyright (C) 2017 ThinkBig Analytics * %% * Licensed 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. * #L% */ import org.joda.time.DateTime; import java.io.Serializable; /** * */ public class AuditLogEntry implements Serializable { private static final long serialVersionUID = 1L; private String id; private DateTime createdTime; private String user; private String type; private String description; private String entityId; public AuditLogEntry() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public DateTime getCreatedTime() { return createdTime; } public void setCreatedTime(DateTime createdTime) { this.createdTime = createdTime; } public String getUser() { return user; } public void setUser(String user) { this.user = user; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getEntityId() { return entityId; } public void setEntityId(String entityId) { this.entityId = entityId; } }