Package com.dotmarketing.portlets.workflowmessages.model

Examples of com.dotmarketing.portlets.workflowmessages.model.Action


   
  // public static final long ACTION_PUBLISH = 5;
 
  public static Action getActionById(long actionId) {
    HibernateUtil dh = new HibernateUtil(Action.class);
    Action myAction = null;
    try {
      dh.setQuery(
        "from action in class com.dotmarketing.portlets.workflowmessages.model.Action where id = ?");
      dh.setParam(actionId);
      myAction = (Action) dh.load();
View Full Code Here

TOP

Related Classes of com.dotmarketing.portlets.workflowmessages.model.Action

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.