Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: eeed79e21be4d2724b114fd02a83bc11eb41b7ed (plain) (blame)
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<!--
    Copyright (c) 2007, 2014 IBM Corporation and others.

    This program and the accompanying materials
    are made available under the terms of the Eclipse Public License 2.0
    which accompanies this distribution, and is available at
    https://www.eclipse.org/legal/epl-2.0/

    SPDX-License-Identifier: EPL-2.0
   
    Contributors:
        IBM Corporation - initial API and implementation
 -->

<plugin>
   <extension-point id="authenticator" name="%Authenticator" schema="schema/authenticator.exsd" /> 
   <extension-point id="identityrepository" name="identityrepository" schema="schema/identity_repository.exsd"/>
   <extension
         point="org.eclipse.core.runtime.preferences">
      <initializer
            class="org.eclipse.jsch.internal.core.PreferenceInitializer">
      </initializer>
      <modifier
            class="org.eclipse.jsch.internal.core.PreferenceModifyListener">
      </modifier>
   </extension>

</plugin>

Back to the top