]> git.argeo.org Git - gpl/argeo-slc.git/blob - plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/editors/DistributionEditor.java
enhance log strategy
[gpl/argeo-slc.git] / plugins / org.argeo.slc.client.ui.dist / src / main / java / org / argeo / slc / client / ui / dist / editors / DistributionEditor.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.slc.client.ui.dist.editors;
17
18 import javax.jcr.RepositoryException;
19 import javax.jcr.Session;
20
21 import org.argeo.jcr.JcrUtils;
22 import org.argeo.slc.client.ui.dist.DistPlugin;
23 import org.argeo.slc.jcr.SlcNames;
24 import org.eclipse.core.runtime.IProgressMonitor;
25 import org.eclipse.ui.IEditorInput;
26 import org.eclipse.ui.IEditorSite;
27 import org.eclipse.ui.PartInitException;
28 import org.eclipse.ui.forms.editor.FormEditor;
29
30 /**
31 * Browse, analyse and modify an OSGi distribution
32 */
33 public class DistributionEditor extends FormEditor implements SlcNames {
34 // private final static Log log =
35 // LogFactory.getLog(DistributionEditor.class);
36 public final static String ID = DistPlugin.ID + ".distributionEditor";
37
38 private Session session;
39
40 @Override
41 public void init(IEditorSite site, IEditorInput input)
42 throws PartInitException {
43 DistributionEditorInput dei = (DistributionEditorInput) input;
44 try {
45 session = dei.getRepository().login(dei.getCredentials(),
46 dei.getWorkspaceName());
47 } catch (RepositoryException e) {
48 throw new PartInitException("Cannot log to workspace "
49 + dei.getWorkspaceName(), e);
50 }
51 setPartName(dei.getWorkspaceName());
52 super.init(site, input);
53 }
54
55 @Override
56 protected void addPages() {
57 // try {
58 // addPage(new DistWkspSearchPage(this, "Overview", session));
59 // addPage(new DistWkspBrowserPage(this, "Browser", session));
60 // } catch (PartInitException e) {
61 // throw new ArgeoException("Cannot add distribution editor pages", e);
62 // }
63 }
64
65 @Override
66 public void doSave(IProgressMonitor arg0) {
67 }
68
69 @Override
70 public void dispose() {
71 JcrUtils.logoutQuietly(session);
72 super.dispose();
73 }
74
75 @Override
76 public void doSaveAs() {
77 }
78
79 @Override
80 public boolean isSaveAsAllowed() {
81 return false;
82 }
83 }