blob: ef50773385c5099e9bbff07faef106824d2d2b03 [file] [log] [blame]
/*=========================================================================
* Copyright (c) 2010-2014 Pivotal Software, Inc. All Rights Reserved.
* This product is protected by U.S. and international copyright
* and intellectual property laws. Pivotal products are covered by
* one or more patents listed at http://www.pivotal.io/patents.
*=========================================================================
*/
package com.company.app;
import com.gemstone.gemfire.cache.Declarable;
/**
* A class that is <code>Declarable</code>
*
* @author David Whitlock
* @since 3.2.1
*/
public class Customer implements Declarable {
public Customer() {
}
public void init(java.util.Properties props) {
}
}