-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin.xml
36 lines (35 loc) · 1.35 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="com.sabre.edge.dynamo.flow.flowextpoint.registry">
<flowExtensionPoint
callbackService="com.sabre.tn.redapp.sdk360.endpnrworkflow.endpnrservice.EndPNRService:execute"
extensionPointId="beforeEndCommand"
flowId="dynamo.pnr.end">
</flowExtensionPoint>
</extension>
<extension
point="com.sabre.edge.redapp.contactdetails.provider">
<contactDetails
company="EndPNRWorkflow.contactDetails1"
contactName="EndPNRWorkflow.contactDetails1"
email="EndPNRWorkflow.contactDetails1"
phoneNumber="EndPNRWorkflow.contactDetails1">
</contactDetails>
</extension>
<extension
point="org.eclipse.core.runtime.preferences">
<initializer class="com.sabre.tn.redapp.sdk360.endpnrworkflow.preferences.PreferenceInitializer">
</initializer>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
category="com.sabre.edge.cf.core.preferences.RedAppsSettings"
class="com.sabre.tn.redapp.sdk360.endpnrworkflow.preferences.PreferencePage"
id="com.sabre.tn.redapp.sdk360.endpnrworkflow.preference"
name="END PNR Settings">
</page>
</extension>
</plugin>