/* * Copyright 2016 Red Hat, Inc. and/or its affiliates * and other contributors as indicated by the @author tags. * * 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. */ package org.keycloak.events.jpa; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Table; /** * @author <a href="mailto:giriraj.sharma27@gmail.com">Giriraj Sharma</a> */ @Entity @Table(name="ADMIN_EVENT_ENTITY") public class AdminEventEntity { @Id @Column(name="ID", length = 36) private String id; @Column(name="ADMIN_EVENT_TIME") private long time; @Column(name="REALM_ID") private String realmId; @Column(name="OPERATION_TYPE") private String operationType; @Column(name="RESOURCE_TYPE", length = 64) private String resourceType; @Column(name="AUTH_REALM_ID") private String authRealmId; @Column(name="AUTH_CLIENT_ID") private String authClientId; @Column(name="AUTH_USER_ID") private String authUserId; @Column(name="IP_ADDRESS") private String authIpAddress; @Column(name="RESOURCE_PATH") private String resourcePath; @Column(name="REPRESENTATION", length = 25500) private String representation; @Column(name="ERROR") private String error; public String getId() { return id; } public void setId(String id) { this.id = id; } public long getTime() { return time; } public void setTime(long time) { this.time = time; } public String getRealmId() { return realmId; } public void setRealmId(String realmId) { this.realmId = realmId; } public String getOperationType() { return operationType; } public void setOperationType(String operationType) { this.operationType = operationType; } public String getAuthRealmId() { return authRealmId; } public void setAuthRealmId(String authRealmId) { this.authRealmId = authRealmId; } public String getAuthClientId() { return authClientId; } public void setAuthClientId(String authClientId) { this.authClientId = authClientId; } public String getAuthUserId() { return authUserId; } public void setAuthUserId(String authUserId) { this.authUserId = authUserId; } public String getAuthIpAddress() { return authIpAddress; } public void setAuthIpAddress(String authIpAddress) { this.authIpAddress = authIpAddress; } public String getResourcePath() { return resourcePath; } public void setResourcePath(String resourcePath) { this.resourcePath = resourcePath; } public String getRepresentation() { return representation; } public void setRepresentation(String representation) { this.representation = representation; } public String getError() { return error; } public void setError(String error) { this.error = error; } public String getResourceType() { return resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; } }