All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.event.jfr.internal.CollectionRecreateEvent Maven / Gradle / Ivy

The newest version!
/*
 * SPDX-License-Identifier: Apache-2.0
 * Copyright Red Hat Inc. and Hibernate Authors
 */
package org.hibernate.event.jfr.internal;

import jdk.jfr.Category;
import jdk.jfr.Description;
import jdk.jfr.Event;
import jdk.jfr.Label;
import jdk.jfr.Name;
import jdk.jfr.StackTrace;
import org.hibernate.event.monitor.spi.DiagnosticEvent;
import org.hibernate.internal.build.AllowNonPortable;

@Name(CollectionRecreateEvent.NAME)
@Label("Collection Recreate")
@Category("Hibernate ORM")
@Description("Collection Recreate")
@StackTrace
@AllowNonPortable
public class CollectionRecreateEvent extends Event implements DiagnosticEvent {
	public static final String NAME = "org.hibernate.orm.CollectionRecreateEvent";

	@Label("Session Identifier")
	public String sessionIdentifier;

	@Label("Entity Identifier")
	public String id;

	@Label("Collection Role")
	public String role;

	@Label("Success")
	public boolean success;

	@Override
	public String toString() {
		return NAME;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy