01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */package org.apache.geronimo.console.car;
17:
18: import java.io.IOException;
19: import java.util.List;
20: import java.util.ArrayList;
21: import java.util.Arrays;
22: import javax.portlet.ActionRequest;
23: import javax.portlet.ActionResponse;
24: import javax.portlet.PortletException;
25: import javax.portlet.RenderRequest;
26: import javax.portlet.RenderResponse;
27: import org.apache.geronimo.console.MultiPageModel;
28: import org.apache.geronimo.console.util.PortletManager;
29: import org.apache.geronimo.console.util.ConfigurationData;
30: import org.apache.geronimo.system.plugin.PluginRepositoryList;
31:
32: /**
33: * Handler to update the list of available plugin repositories
34: *
35: * @version $Rev: 609072 $ $Date: 2008-01-04 16:47:14 -0800 (Fri, 04 Jan 2008) $
36: */
37: public class UpdateListHandler extends BaseImportExportHandler {
38: public UpdateListHandler() {
39: super (UPDATE_REPOS_MODE, null);
40: }
41:
42: public String actionBeforeView(ActionRequest request,
43: ActionResponse response, MultiPageModel model)
44: throws PortletException, IOException {
45: List<PluginRepositoryList> lists = ManagementHelper
46: .getManagementHelper(request)
47: .getPluginRepositoryLists();
48: for (PluginRepositoryList repo : lists) {
49: repo.refresh();
50: }
51: return INDEX_MODE + BEFORE_ACTION;
52: }
53:
54: public void renderView(RenderRequest request,
55: RenderResponse response, MultiPageModel model)
56: throws PortletException, IOException {
57: }
58:
59: public String actionAfterView(ActionRequest request,
60: ActionResponse response, MultiPageModel model)
61: throws PortletException, IOException {
62: return INDEX_MODE + BEFORE_ACTION;
63: }
64: }
|