Package com.netflix.explorers.annotations

Examples of com.netflix.explorers.annotations.Controller


        }
    }
   
    public String getName() {
        if (this.name == null) {
            Controller controller = this.getClass().getAnnotation(Controller.class);
            if (controller != null) {
                return controller.value();
            }
        }
        return this.name;
    }
View Full Code Here

TOP

Related Classes of com.netflix.explorers.annotations.Controller

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.