Examples of AkteraQuery


Examples of de.iritgo.aktera.aktario.akteraconnector.AkteraQuery

public class AkteraAktarioPlugin extends FrameworkPlugin
{
  @Override
  protected void registerDataObjects()
  {
    registerDataObject(new AkteraQuery());
  }
View Full Code Here

Examples of de.iritgo.aktera.aktario.akteraconnector.AkteraQuery

            "DataObjectManager");
    QueryRegistry queryRegistry = dom.getQueryRegistry();

    for (Iterator i = queryRegistry.queryIterator("aktera.journal.list.notvisible"); i.hasNext();)
    {
      AkteraQuery query = (AkteraQuery) i.next();
      long userUniqueId = query.getUserUniqueId();
      UserRegistry userRegistry = Server.instance().getUserRegistry();
      User iritgoUser = userRegistry.getUser(userUniqueId);

      if (akteraUserName.equals(iritgoUser.getName()))
      {
        Properties props = new Properties();

        props.put("akteraQuery", query.getUniqueId());

        ActionTools.sendToClient(iritgoUser.getName(), new CommandAction("aktario-journal.RefreshJournalPane",
                props));
      }
    }
View Full Code Here

Examples of de.iritgo.aktera.aktario.akteraconnector.AkteraQuery

      props.put("searchbutton", "no");
      props.put("toolbar", "no");
      props.put("rowHeight", 60);
      props.put("headerOff", "true");

      AkteraQuery journalQuery = new AkteraQuery("aktera.journal.list.notvisible",
              "de.iritgo.aktera.journal.EmbeddedJournal");

      DataObjectTools.executeQuery(journalQuery);
      CommandTools.performAsync(new ShowWindow("QueryPane", "de.iritgo.aktera.journal.EmbeddedJournal",
              "default", journalQuery), props);
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.