1 /*
2 * SPDX-License-Identifier: Apache-2.0
3 * See LICENSE file for details.
4 *
5 * Copyright 2012-2026 hazendaz
6 *
7 * Portions of initial baseline code (getter/setter test) by Rob Dawson (CodeBox)
8 */
9 package com.codebox.bean;
10
11 import java.io.Serializable;
12
13 /**
14 * The Class EmptyBean.
15 */
16 public class EmptyBean implements Serializable {
17
18 /** The Constant serialVersionUID. */
19 private static final long serialVersionUID = 1L;
20
21 // Empty bean for testing
22
23 }