Package com.alibaba.otter.shared.common.model.config

Examples of com.alibaba.otter.shared.common.model.config.Transient


        for (Field f : fields) {
            if (!f.isAccessible()) {
                f.setAccessible(true);
            }

            Transient anno = f.getAnnotation(Transient.class);
            if (anno != null && anno.value()) {
                transientFileds.add(f.getName());
            }
        }

        return marshalToString(obj, transientFileds.toArray(new String[transientFileds.size()]));
View Full Code Here

TOP

Related Classes of com.alibaba.otter.shared.common.model.config.Transient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.