View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.syncope.client.console.tasks;
20  
21  import org.apache.commons.lang3.tuple.Pair;
22  import org.apache.syncope.client.console.panels.MultilevelPanel;
23  import org.apache.syncope.client.console.wicket.markup.html.bootstrap.dialog.BaseModal;
24  import org.apache.syncope.common.lib.to.AnyTO;
25  import org.apache.syncope.common.lib.to.PullTaskTO;
26  import org.apache.wicket.PageReference;
27  import org.apache.wicket.ajax.AjaxRequestTarget;
28  import org.apache.wicket.model.Model;
29  import org.apache.wicket.model.StringResourceModel;
30  
31  public class PullTasks extends AbstractTasks {
32  
33      private static final long serialVersionUID = -4013796607157549641L;
34  
35      public <T extends AnyTO> PullTasks(
36              final BaseModal<?> baseModal, final String resource, final PageReference pageRef) {
37  
38          super(BaseModal.CONTENT_ID);
39  
40          MultilevelPanel mlp = new MultilevelPanel("tasks");
41          add(mlp);
42  
43          mlp.setFirstLevel(new PullTaskDirectoryPanel(taskRestClient, baseModal, mlp, resource, pageRef) {
44  
45              private static final long serialVersionUID = -2195387360323687302L;
46  
47              @Override
48              protected void viewTaskExecs(final PullTaskTO taskTO, final AjaxRequestTarget target) {
49                  mlp.next(
50                          new StringResourceModel("task.view", this, new Model<>(Pair.of(null, taskTO))).getObject(),
51                          new TaskExecutionDetails<>(taskTO, pageRef),
52                          target);
53              }
54          });
55      }
56  }