30 |
brianR |
1 |
/*
|
|
|
2 |
* Mylyn Connector for Serena Business Mashups
|
|
|
3 |
* Copyright 2010 Brian Rosenberger (Brutex Network)
|
|
|
4 |
*
|
|
|
5 |
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
6 |
* you may not use this file except in compliance with the License.
|
|
|
7 |
* You may obtain a copy of the License at
|
|
|
8 |
*
|
|
|
9 |
* 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 |
*
|
|
|
17 |
* Serena, TeamTrack and Serena Business Mashup are
|
|
|
18 |
* registered trademarks of SERENA Software Inc.
|
|
|
19 |
*/
|
|
|
20 |
package net.brutex.mylyn.sbmconnector.ui;
|
|
|
21 |
|
|
|
22 |
import net.brutex.mylyn.sbmconnector.SBMConnectorPlugin;
|
|
|
23 |
|
|
|
24 |
import org.eclipse.jface.wizard.IWizard;
|
|
|
25 |
import org.eclipse.mylyn.tasks.core.IRepositoryQuery;
|
|
|
26 |
import org.eclipse.mylyn.tasks.core.ITaskMapping;
|
|
|
27 |
import org.eclipse.mylyn.tasks.core.TaskRepository;
|
|
|
28 |
import org.eclipse.mylyn.tasks.ui.AbstractRepositoryConnectorUi;
|
|
|
29 |
import org.eclipse.mylyn.tasks.ui.wizards.ITaskRepositoryPage;
|
|
|
30 |
import org.eclipse.mylyn.tasks.ui.wizards.RepositoryQueryWizard;
|
|
|
31 |
|
|
|
32 |
public class SBMRepositoryConnectorUi extends AbstractRepositoryConnectorUi {
|
|
|
33 |
|
|
|
34 |
@Override
|
|
|
35 |
public String getConnectorKind() {
|
|
|
36 |
return SBMConnectorPlugin.CONNECTOR_KIND;
|
|
|
37 |
}
|
|
|
38 |
|
|
|
39 |
|
|
|
40 |
@Override
|
|
|
41 |
public IWizard getNewTaskWizard(TaskRepository taskRepository,
|
|
|
42 |
ITaskMapping selection) {
|
|
|
43 |
// TODO Auto-generated method stub
|
|
|
44 |
return null;
|
|
|
45 |
}
|
|
|
46 |
|
|
|
47 |
@Override
|
|
|
48 |
public IWizard getQueryWizard(TaskRepository taskRepository,
|
|
|
49 |
IRepositoryQuery queryToEdit) {
|
|
|
50 |
RepositoryQueryWizard w = new RepositoryQueryWizard(taskRepository);
|
|
|
51 |
w.addPage(new SBMRepositoryQueryPage("Primary Table Specification", taskRepository, queryToEdit));
|
|
|
52 |
return w;
|
|
|
53 |
}
|
|
|
54 |
|
|
|
55 |
@Override
|
|
|
56 |
public ITaskRepositoryPage getSettingsPage(TaskRepository taskRepository) {
|
|
|
57 |
return new SBMRepositorySettingsPage(SBMConnectorPlugin.LABEL,
|
|
|
58 |
SBMConnectorPlugin.DESCRIPTION,
|
|
|
59 |
new TaskRepository(SBMConnectorPlugin.CONNECTOR_KIND,
|
|
|
60 |
"http://<server>:80/gsoap/gsoap_ssl.dll?aewebservices71"));
|
|
|
61 |
}
|
|
|
62 |
|
|
|
63 |
@Override
|
|
|
64 |
public boolean hasSearchPage() {
|
|
|
65 |
// TODO Auto-generated method stub
|
|
|
66 |
return false;
|
|
|
67 |
}
|
|
|
68 |
|
|
|
69 |
|
|
|
70 |
|
|
|
71 |
}
|