mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
13 lines
263 B
Java
13 lines
263 B
Java
package com.avaje.ebeaninternal.api;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* Object used as a synchronization monitor that is serializable.
|
|
*/
|
|
public class Monitor implements Serializable {
|
|
|
|
private static final long serialVersionUID = -2741687226680981940L;
|
|
|
|
}
|