Package hudson.tasks.Mailer

Examples of hudson.tasks.Mailer.UserProperty


        }

        return query(Predicates.and(
                checker(new Function<hudson.model.User, String>() {
                    public String apply(hudson.model.User u) {
                        UserProperty m = u.getProperty(UserProperty.class);
                        return m != null ? m.getAddress() : "";
                    }
                }, literalAndLike(email, emailLike)),

                checker(new Function<hudson.model.User, String>() {
                    public String apply(hudson.model.User u) {
View Full Code Here


            // there's really nothing sane we can do. bail out.
            firstName = u.getFullName();
            lastName = "";
        }

        UserProperty m = u.getProperty(UserProperty.class);
        email = m != null ? m.getAddress() : "";
    }
View Full Code Here

TOP

Related Classes of hudson.tasks.Mailer.UserProperty

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.