001
002package io.vrap.rmf.base.client;
003
004public interface Builder<T> {
005    T build();
006}