global.namespace.truelicense.api.builder.GenBuilder Maven / Gradle / Ivy
/*
* Copyright (C) 2005 - 2019 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package global.namespace.truelicense.api.builder;
/**
* A builder for some product.
* Builders are generally not thread-safe.
*
* @param the type of the product.
*/
public interface GenBuilder {
/** Builds and returns a new product. */
Product build();
}