1 /* 2 * Copyright (c) 2007 Mockito contributors 3 * This program is made available under the terms of the MIT License. 4 */ 5 package org.mockito.internal.creation.jmock; 6 7 import org.mockito.cglib.proxy.Callback; 8 import org.mockito.cglib.proxy.NoOp; 9 10 import java.io.Serializable; 11 12 /** 13 * Offer a Serializable implementation of the NoOp CGLIB callback. 14 */ 15 public class SerializableNoOp implements NoOp, Serializable { 16 17 private static final long serialVersionUID = 7434976328690189159L; 18 public static final Callback SERIALIZABLE_INSTANCE = new SerializableNoOp(); 19 20 } 21