001
002package io.vrap.rmf.base.client;
003
004/**
005 * interface to build instance of T
006 * @param <T> type to be build
007 */
008public interface Builder<T> {
009 /**
010 * build an instance of the generic type
011 * @return build instance
012 */
013 T build();
014}