Package com.sun.grid.jgdi.configuration

Examples of com.sun.grid.jgdi.configuration.MailReceiver


    }
   
// [-M mail_list]                           notify these e-mail addresses
    @OptionAnnotation(value = "-M", extra = OptionAnnotation.MAX_ARG_VALUE)
    public void setMailList(final OptionInfo oi) throws JGDIException {
        MailReceiver mr = new MailReceiverImpl(oi.getFirstArg());
        job.addMail(mr);
    }
View Full Code Here


        ar.setType(getYesNoAsInt(oi.getFirstArg()));
    }
    //[-M mail_list]                           notify these e-mail addresses
    @OptionAnnotation(value="-M",extra=OptionAnnotation.MAX_ARG_VALUE)
    public void setMailList(final OptionInfo oi) throws JGDIException {
        MailReceiver mr = new MailReceiverImpl(oi.getFirstArg());
        ar.addMail(mr);
    }
View Full Code Here

TOP

Related Classes of com.sun.grid.jgdi.configuration.MailReceiver

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.