![JAR search and dependency download from the Maven repository](/logo.png)
com.jk.webstack.services.logging.UserActionLog Maven / Gradle / Ivy
/*
* Copyright 2002-2022 Dr. Jalal Kiswani.
* Email: [email protected]
* Check out https://smart-api.com for more details
*
* All the opensource projects of Dr. Jalal Kiswani are free for personal and academic use only,
* for commercial usage and support, please contact the author.
*
* 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.jk.webstack.services.logging;
import java.util.Date;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.Table;
import jakarta.persistence.Temporal;
import jakarta.persistence.TemporalType;
import lombok.Data;
// TODO: Auto-generated Javadoc
/**
* The Class UserActionLog.
*/
@Entity
@Table(name = "app_user_actions_log")
/**
* Instantiates a new user action log.
*/
/**
* Instantiates a new user action log.
*/
/**
* Instantiates a new user action log.
*/
/**
* Instantiates a new user action log.
*/
/**
* Instantiates a new user action log.
*/
/**
* Instantiates a new user action log.
*/
/**
* Instantiates a new user action log.
*/
@Data
public class UserActionLog {
/** The id. */
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
long id;
/** The user name. */
@Column(name = "user_name")
String userName;
/** The log class. */
@Column(name = "class_name")
String logClass;
/** The log type. */
@Column(name = "log_type")
String logType;
/** The time. */
@Column(name = "log_time")
@Temporal(TemporalType.TIMESTAMP)
Date time;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy