Examples of send()


Examples of org.openbravo.erpCommon.businessUtility.EMail.send()

              + data[0].mailtext);
        if (log4j.isDebugEnabled())
          log4j
              .debug("*************************************************************************************************");
        EMail email = new EMail(vars, smtpHost, from, to, data[0].mailsubject, data[0].mailtext);
        msg = email.send();
        if ("OK".equals(msg)) {
          RequestActionData.update(conn, this, Utility.messageBD(this, "RequestActionEMailOK", vars
              .getLanguage()), strKey);
        } else {
          RequestActionData.update(conn, this, Utility.messageBD(this, "RequestActionEMailError",
View Full Code Here

Examples of org.openhab.core.items.GroupItem.send()

    if(itemRegistry!=null) {
      try {
        Item item = itemRegistry.getItem(itemName);
        if (item instanceof GroupItem) {
          GroupItem groupItem = (GroupItem) item;
          groupItem.send(command);
        }
      } catch (ItemNotFoundException e) {
        logger.debug("Received command for non-existing item: {}", e.getMessage());
      }
    }
View Full Code Here

Examples of org.openntf.domino.Document.send()

      //set the sender
      setSender(mimeRoot);

      //send the e-mail
      memo.send();

      return memo;
    } catch (Throwable t) {
      DominoUtils.handleException(t);
      return null;
View Full Code Here

Examples of org.openntf.domino.email.DominoEmail.send()

    to.add("paulswithers@hotmail.co.uk");
    to.add("tmalone@intec.co.uk");
    to.add("pwithers@intec.co.uk");
    myEmail.setTo(to);
    myEmail.addHTML(p_HTML);
    myEmail.send();
  }

  public static TreeSet<String> getSessionAndApplicationSets() {
    TreeSet<String> val = new TreeSet<String>();
    Map<String, Object> sessScope = ExtLibUtil.getSessionScope();
View Full Code Here

Examples of org.openrdf.http.client.connections.HTTPRequest.send()

  public void put(Object instance)
    throws StoreConfigException
  {
    HTTPRequest request = pool.put();
    try {
      request.send(instance);
      execute(request);
    }
    catch (IOException e) {
      throw new StoreConfigException(e);
    }
View Full Code Here

Examples of org.opensocial.Client.send()

    try {
      Client client = new Client(new MySpaceProvider(),
          new OAuth2LeggedScheme(MYSPACE_KEY, MYSPACE_SECRET, MYSPACE_ID));
      Request request = ActivitiesService.createActivity(activity);
      client.send(request);
    } catch (Exception e) {
      fail("Exception occurred while processing request");
    }
  }
View Full Code Here

Examples of org.ops4j.pax.exam.sample9.pde.Notifier.send()

    private void notifyRemoteListener(String rmiProperty) throws Exception {
        int rmiPort = Integer.parseInt(rmiProperty);
        Registry registry = LocateRegistry.getRegistry(rmiPort);
        Remote remote = registry.lookup("PaxExamNotifier");
        Notifier notifier = (Notifier) remote;
        notifier.send("bundle org.ops4j.pax.exam.sample9.pde started");
    }

    /**
     * Optionally blocks framework shutdown for a shutdown timeout regression test.
     */
 
View Full Code Here

Examples of org.pdf4j.saxon.event.Sender.send()

        aug.setDTDValidationMode(Validation.STRIP);
        aug.setLineNumbering(true);
        if (aug.getXMLReader() == null && Configuration.getPlatform().isJava()) {
            XMLReader styleParser = config.getStyleParser();
            aug.setXMLReader(styleParser);
            sender.send(aug, commentStripper);
            config.reuseStyleParser(styleParser);
        } else {
            sender.send(aug, commentStripper);
        }
        doc = (DocumentImpl)styleBuilder.getCurrentRoot();
View Full Code Here

Examples of org.pentaho.platform.scheduler2.email.Emailer.send()

      }
      String message = (String) actionParams.get( "_SCH_EMAIL_MESSAGE" );
      if ( subject != null && !"".equals( subject ) ) {
        emailer.setBody( message );
      }
      emailer.send();
    } catch ( Exception e ) {
      log.warn( e.getMessage(), e );
    }     
  }
View Full Code Here

Examples of org.picketlink.identity.federation.api.soap.SOAPSAMLXACML.send()

        if (sendRequest) {
            // Create an XACML Request
            RequestType xacmlRequest = getXACMLRequest();
            SOAPSAMLXACML soapSAMLXACML = new SOAPSAMLXACML();

            Result result = soapSAMLXACML.send(endpoint, issuer, xacmlRequest);
            assertTrue("No fault", result.isFault() == false);
            assertTrue("Decision available", result.isResponseAvailable());
            assertTrue("Deny", result.isDeny());
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.