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

org.hibernate.envers.internal.EnversMessageLogger Maven / Gradle / Ivy

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

import org.jboss.logging.BasicLogger;
import org.jboss.logging.annotations.MessageLogger;
import org.jboss.logging.annotations.ValidIdRange;

/**
 * The jboss-logging {@link MessageLogger} for the hibernate-envers module.  It reserves message ids ranging from
 * 25001 to 30000 inclusively.
 * 

* New messages must be added after the last message defined to ensure message codes are unique. */ @MessageLogger(projectCode = "HHH") @ValidIdRange(min = 25001, max = 30000) public interface EnversMessageLogger extends BasicLogger { }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy