Package cave.nice.testMessage.reports.ReportsGenerator

Examples of cave.nice.testMessage.reports.ReportsGenerator.ReportingMedium


  public Response sendReportToUser(
      @PathParam("emailAddress") InternetAddress emailAddress,
      @DefaultValue("HTML") @FormParam("type") String reportTypeString,
      @DefaultValue("GMail") @FormParam("medium") String reportingMediumString) {
    ReportType reportType = ReportType.valueOf(reportTypeString);
    ReportingMedium reportingMedium = ReportingMedium
        .valueOf(reportingMediumString);

    DataManager dataManager = getDataManager();
    try {
      VerifiedAccount account = dataManager
View Full Code Here

TOP

Related Classes of cave.nice.testMessage.reports.ReportsGenerator.ReportingMedium

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.