001package net.gdface.thrift;
002
003/**
004 * thrift装饰者模式接口
005 * @author guyadong
006 *
007 */
008public interface ThriftDecorator<T> {
009        /**
010         * 返回代理对象
011         * @return
012         */
013        T delegate();
014}