1 /*
2 * JavaBean Tester (https://github.com/hazendaz/javabean-tester)
3 *
4 * Copyright 2012-2021 Hazendaz.
5 *
6 * All rights reserved. This program and the accompanying materials
7 * are made available under the terms of The Apache Software License,
8 * Version 2.0 which accompanies this distribution, and is available at
9 * http://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Contributors:
12 * CodeBox (Rob Dawson).
13 * Hazendaz (Jeremy Landis).
14 */
15 package com.codebox.bean;
16
17 import java.io.Serializable;
18
19 /**
20 * The Class EmptyBean.
21 */
22 public class EmptyBean implements Serializable {
23
24 /** The Constant serialVersionUID. */
25 private static final long serialVersionUID = 1L;
26
27 // Empty bean for testing
28
29 }