Package org.activiti.explorer.ui.task

Source Code of org.activiti.explorer.ui.task.InboxPage

/* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.activiti.explorer.ui.task;

import org.activiti.explorer.data.LazyLoadingQuery;
import org.activiti.explorer.navigation.TaskNavigator;
import org.activiti.explorer.navigation.UriFragment;
import org.activiti.explorer.ui.task.data.InboxListQuery;

/**
* The page displaying all tasks currently in ones inbox.
*
* @author Joram Barrez
*/
public class InboxPage extends TaskPage {
 
  private static final long serialVersionUID = 1L;
 
  public InboxPage() {
  }
 
  /**
   * Constructor called when page is accessed straight through the url, eg. /task/id=123
   */
  public InboxPage(String taskId) {
    super(taskId);
  }
 
  @Override
  protected LazyLoadingQuery createLazyLoadingQuery() {
    return new InboxListQuery();
  }
 
  @Override
  protected UriFragment getUriFragment(String taskId) {
    UriFragment taskFragment = new UriFragment(TaskNavigator.TASK_URI_PART);

    if(taskId != null) {
      taskFragment.addUriPart(taskId);
    }

    taskFragment.addParameter(TaskNavigator.PARAMETER_CATEGORY, TaskNavigator.CATEGORY_INBOX);
    return taskFragment;
  }
 
}
TOP

Related Classes of org.activiti.explorer.ui.task.InboxPage

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.