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.PropagationTaskTO;
26  import org.apache.syncope.common.lib.types.AnyTypeKind;
27  import org.apache.wicket.PageReference;
28  import org.apache.wicket.ajax.AjaxRequestTarget;
29  import org.apache.wicket.model.Model;
30  import org.apache.wicket.model.StringResourceModel;
31  
32  public class AnyPropagationTasks extends AbstractPropagationTasks {
33  
34      private static final long serialVersionUID = -4013796607157549641L;
35  
36      public <T extends AnyTO> AnyPropagationTasks(
37              final BaseModal<?> baseModal,
38              final AnyTypeKind anyTypeKind,
39              final String entityKey,
40              final PageReference pageRef) {
41  
42          super(BaseModal.CONTENT_ID);
43  
44          MultilevelPanel mlp = new MultilevelPanel("tasks");
45          mlp.setFirstLevel(new AnyPropagationTaskDirectoryPanel(
46                  taskRestClient, baseModal, mlp, anyTypeKind, entityKey, pageRef) {
47  
48              private static final long serialVersionUID = -2195387360323687302L;
49  
50              @Override
51              protected void viewTaskExecs(final PropagationTaskTO taskTO, final AjaxRequestTarget target) {
52                  mlp.next(
53                          new StringResourceModel("task.view", this, new Model<>(Pair.of(null, taskTO))).getObject(),
54                          new TaskExecutionDetails<>(taskTO, pageRef),
55                          target);
56              }
57  
58              @Override
59              protected void viewTaskDetails(final PropagationTaskTO taskTO, final AjaxRequestTarget target) {
60                  mlp.next(
61                          new StringResourceModel("task.view.details", this, new Model<>(Pair.of(null, taskTO))).
62                                  getObject(),
63                          new PropagationDataView(taskTO),
64                          target);
65              }
66          });
67          add(mlp);
68      }
69  }