You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2009/10/21 11:26:42 UTC

svn commit: r827937 [2/2] - in /directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration: ./ editor/ editor/v150/ editor/v151/ editor/v152/ editor/v153/ editor/v154/ editor/v154/dialogs/ editor/v155...

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/AuthenticationPage.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/AuthenticationPage.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/AuthenticationPage.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/AuthenticationPage.java Wed Oct 21 09:26:39 2009
@@ -74,7 +74,7 @@
     public static final String ID = ServerConfigurationEditor.ID + ".V155.AuthenticationPage"; //$NON-NLS-1$
 
     /** The Page Title */
-    private static final String TITLE = Messages.getString("AuthenticationPage.Authentication"); //$NON-NLS-1$
+    private static final String TITLE = Messages.getString( "AuthenticationPage.Authentication" ); //$NON-NLS-1$
 
     private List<String> saslRealms;
 
@@ -114,7 +114,7 @@
             ApacheDSConfigurationPluginConstants.PLUGIN_ID + "." + "configuration_editor_154" ); //$NON-NLS-1$ //$NON-NLS-2$
 
         ScrolledForm form = managedForm.getForm();
-        form.setText( Messages.getString("AuthenticationPage.Authentication") ); //$NON-NLS-1$
+        form.setText( Messages.getString( "AuthenticationPage.Authentication" ) ); //$NON-NLS-1$
 
         Composite parent = form.getBody();
         parent.setLayout( new TableWrapLayout() );
@@ -147,7 +147,7 @@
     {
         // Creation of the section
         Section section = toolkit.createSection( parent, Section.TITLE_BAR );
-        section.setText( Messages.getString("AuthenticationPage.SupportedAuthenticationMechanisms") ); //$NON-NLS-1$
+        section.setText( Messages.getString( "AuthenticationPage.SupportedAuthenticationMechanisms" ) ); //$NON-NLS-1$
         section.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
         Composite client = toolkit.createComposite( section );
         toolkit.paintBordersFor( client );
@@ -167,16 +167,19 @@
                 SupportedMechanismEnum.GSSAPI, SupportedMechanismEnum.NTLM, SupportedMechanismEnum.GSS_SPNEGO } );
 
         // Edit Button
-        editSupportedMechanismButton = toolkit.createButton( client, Messages.getString("AuthenticationPage.Edit"), SWT.PUSH ); //$NON-NLS-1$
+        editSupportedMechanismButton = toolkit.createButton( client,
+            Messages.getString( "AuthenticationPage.Edit" ), SWT.PUSH ); //$NON-NLS-1$
         editSupportedMechanismButton.setLayoutData( new GridData( SWT.FILL, SWT.BEGINNING, false, false ) );
         editSupportedMechanismButton.setEnabled( false );
 
         // Select All Button
-        selectAllSupportedMechanismsButton = toolkit.createButton( client, Messages.getString("AuthenticationPage.SelectAll"), SWT.PUSH ); //$NON-NLS-1$
+        selectAllSupportedMechanismsButton = toolkit.createButton( client, Messages
+            .getString( "AuthenticationPage.SelectAll" ), SWT.PUSH ); //$NON-NLS-1$
         selectAllSupportedMechanismsButton.setLayoutData( new GridData( SWT.FILL, SWT.BEGINNING, false, false ) );
 
         // Deselect All Button
-        deselectAllSupportedMechanismsButton = toolkit.createButton( client, Messages.getString("AuthenticationPage.DeselectAll"), SWT.PUSH ); //$NON-NLS-1$
+        deselectAllSupportedMechanismsButton = toolkit.createButton( client, Messages
+            .getString( "AuthenticationPage.DeselectAll" ), SWT.PUSH ); //$NON-NLS-1$
         deselectAllSupportedMechanismsButton.setLayoutData( new GridData( SWT.FILL, SWT.BEGINNING, false, false ) );
     }
 
@@ -193,7 +196,7 @@
     {
         // Creation of the section
         Section section = toolkit.createSection( parent, Section.TITLE_BAR );
-        section.setText( Messages.getString("AuthenticationPage.SaslSettings") ); //$NON-NLS-1$
+        section.setText( Messages.getString( "AuthenticationPage.SaslSettings" ) ); //$NON-NLS-1$
         section.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
         Composite client = toolkit.createComposite( section );
         toolkit.paintBordersFor( client );
@@ -202,17 +205,17 @@
         section.setClient( client );
 
         // SASL Host
-        toolkit.createLabel( client, Messages.getString("AuthenticationPage.SaslHost") ); //$NON-NLS-1$
+        toolkit.createLabel( client, Messages.getString( "AuthenticationPage.SaslHost" ) ); //$NON-NLS-1$
         saslHostText = toolkit.createText( client, "" ); //$NON-NLS-1$
         saslHostText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
 
         // SASL Principal
-        toolkit.createLabel( client, Messages.getString("AuthenticationPage.SaslPrincipal") ); //$NON-NLS-1$
+        toolkit.createLabel( client, Messages.getString( "AuthenticationPage.SaslPrincipal" ) ); //$NON-NLS-1$
         saslPrincipalText = toolkit.createText( client, "" ); //$NON-NLS-1$
         saslPrincipalText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
 
         // Search Base DN
-        toolkit.createLabel( client, Messages.getString("AuthenticationPage.SearchBaseDN") ); //$NON-NLS-1$
+        toolkit.createLabel( client, Messages.getString( "AuthenticationPage.SearchBaseDN" ) ); //$NON-NLS-1$
         searchBaseDnText = toolkit.createText( client, "" ); //$NON-NLS-1$
         searchBaseDnText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
     }
@@ -230,7 +233,7 @@
     {
         // Creation of the section
         Section section = toolkit.createSection( parent, Section.TITLE_BAR );
-        section.setText( Messages.getString("AuthenticationPage.SaslRealms") ); //$NON-NLS-1$
+        section.setText( Messages.getString( "AuthenticationPage.SaslRealms" ) ); //$NON-NLS-1$
         section.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
         Composite client = toolkit.createComposite( section );
         toolkit.paintBordersFor( client );
@@ -247,16 +250,17 @@
         saslRealmsTableViewer.setContentProvider( new ArrayContentProvider() );
 
         // Add Button
-        addSaslRealmButton = toolkit.createButton( client, Messages.getString("AuthenticationPage.Add"), SWT.PUSH ); //$NON-NLS-1$
+        addSaslRealmButton = toolkit.createButton( client, Messages.getString( "AuthenticationPage.Add" ), SWT.PUSH ); //$NON-NLS-1$
         addSaslRealmButton.setLayoutData( new GridData( SWT.FILL, SWT.BEGINNING, false, false ) );
 
         // Edit Button
-        editSaslRealmsButton = toolkit.createButton( client, Messages.getString("AuthenticationPage.Edit"), SWT.PUSH ); //$NON-NLS-1$
+        editSaslRealmsButton = toolkit.createButton( client, Messages.getString( "AuthenticationPage.Edit" ), SWT.PUSH ); //$NON-NLS-1$
         editSaslRealmsButton.setLayoutData( new GridData( SWT.FILL, SWT.BEGINNING, false, false ) );
         editSaslRealmsButton.setEnabled( false );
 
         // Delete Button
-        deleteSaslRealmButton = toolkit.createButton( client, Messages.getString("AuthenticationPage.Delete"), SWT.PUSH ); //$NON-NLS-1$
+        deleteSaslRealmButton = toolkit.createButton( client,
+            Messages.getString( "AuthenticationPage.Delete" ), SWT.PUSH ); //$NON-NLS-1$
         deleteSaslRealmButton.setLayoutData( new GridData( SWT.FILL, SWT.BEGINNING, false, false ) );
         deleteSaslRealmButton.setEnabled( false );
     }

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/ExtendedOperationDetailsPage.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/ExtendedOperationDetailsPage.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/ExtendedOperationDetailsPage.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/ExtendedOperationDetailsPage.java Wed Oct 21 09:26:39 2009
@@ -99,13 +99,13 @@
         section.setClient( client );
 
         // Name
-        toolkit.createLabel( client, Messages.getString("ExtendedOperationDetailsPage.Name") ); //$NON-NLS-1$
+        toolkit.createLabel( client, Messages.getString( "ExtendedOperationDetailsPage.Name" ) ); //$NON-NLS-1$
         nameText = toolkit.createText( client, "" ); //$NON-NLS-1$
         nameText.setEditable( false );
         nameText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
 
         // Description
-        toolkit.createLabel( client, Messages.getString("ExtendedOperationDetailsPage.Description") ); //$NON-NLS-1$
+        toolkit.createLabel( client, Messages.getString( "ExtendedOperationDetailsPage.Description" ) ); //$NON-NLS-1$
         descriptionText = toolkit.createText( client, "", SWT.MULTI | SWT.WRAP | SWT.V_SCROLL ); //$NON-NLS-1$
         descriptionText.setEditable( false );
         GridData gridData = new GridData( SWT.FILL, SWT.NONE, true, false );

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/ExtendedOperationsMasterDetailsBlock.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/ExtendedOperationsMasterDetailsBlock.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/ExtendedOperationsMasterDetailsBlock.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/ExtendedOperationsMasterDetailsBlock.java Wed Oct 21 09:26:39 2009
@@ -104,7 +104,7 @@
 
         // Creating the Section
         Section section = toolkit.createSection( parent, Section.TITLE_BAR );
-        section.setText( Messages.getString("ExtendedOperationsMasterDetailsBlock.AllExtendedOperations") ); //$NON-NLS-1$
+        section.setText( Messages.getString( "ExtendedOperationsMasterDetailsBlock.AllExtendedOperations" ) ); //$NON-NLS-1$
         section.marginWidth = 10;
         section.marginHeight = 5;
         Composite client = toolkit.createComposite( section, SWT.WRAP );
@@ -156,10 +156,12 @@
         } );
 
         // Creating the button(s)
-        addButton = toolkit.createButton( client, Messages.getString("ExtendedOperationsMasterDetailsBlock.Add"), SWT.PUSH ); //$NON-NLS-1$
+        addButton = toolkit.createButton( client,
+            Messages.getString( "ExtendedOperationsMasterDetailsBlock.Add" ), SWT.PUSH ); //$NON-NLS-1$
         addButton.setLayoutData( new GridData( SWT.FILL, SWT.BEGINNING, false, false ) );
 
-        deleteButton = toolkit.createButton( client, Messages.getString("ExtendedOperationsMasterDetailsBlock.Delete"), SWT.PUSH ); //$NON-NLS-1$
+        deleteButton = toolkit.createButton( client,
+            Messages.getString( "ExtendedOperationsMasterDetailsBlock.Delete" ), SWT.PUSH ); //$NON-NLS-1$
         deleteButton.setEnabled( false );
         deleteButton.setLayoutData( new GridData( SWT.FILL, SWT.BEGINNING, false, false ) );
 

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/ExtendedOperationsPage.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/ExtendedOperationsPage.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/ExtendedOperationsPage.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/ExtendedOperationsPage.java Wed Oct 21 09:26:39 2009
@@ -42,7 +42,7 @@
     public static final String ID = ServerConfigurationEditor.ID + ".V155.ExtendedOperationsPage"; //$NON-NLS-1$
 
     /** The Page Title */
-    private static final String TITLE = Messages.getString("ExtendedOperationsPage.ExtendedOperations"); //$NON-NLS-1$
+    private static final String TITLE = Messages.getString( "ExtendedOperationsPage.ExtendedOperations" ); //$NON-NLS-1$
 
     /** The Master/Details Block */
     private ExtendedOperationsMasterDetailsBlock masterDetailsBlock;
@@ -69,7 +69,7 @@
             ApacheDSConfigurationPluginConstants.PLUGIN_ID + "." + "configuration_editor_154" ); //$NON-NLS-1$ //$NON-NLS-2$
 
         final ScrolledForm form = managedForm.getForm();
-        form.setText( Messages.getString("ExtendedOperationsPage.ExtendedOperations") ); //$NON-NLS-1$
+        form.setText( Messages.getString( "ExtendedOperationsPage.ExtendedOperations" ) ); //$NON-NLS-1$
         masterDetailsBlock = new ExtendedOperationsMasterDetailsBlock( this );
         masterDetailsBlock.createContent( managedForm );
     }

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/GeneralPage.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/GeneralPage.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/GeneralPage.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/GeneralPage.java Wed Oct 21 09:26:39 2009
@@ -60,7 +60,7 @@
     public static final String ID = ServerConfigurationEditor.ID + ".V154.GeneralPage"; //$NON-NLS-1$
 
     /** The Page Title */
-    private static final String TITLE = Messages.getString("GeneralPage.General"); //$NON-NLS-1$
+    private static final String TITLE = Messages.getString( "GeneralPage.General" ); //$NON-NLS-1$
 
     // UI Fields
     private Button allowAnonymousAccessCheckbox;
@@ -105,7 +105,7 @@
             ApacheDSConfigurationPluginConstants.PLUGIN_ID + "." + "configuration_editor_154" ); //$NON-NLS-1$ //$NON-NLS-2$
 
         ScrolledForm form = managedForm.getForm();
-        form.setText( Messages.getString("GeneralPage.General") ); //$NON-NLS-1$
+        form.setText( Messages.getString( "GeneralPage.General" ) ); //$NON-NLS-1$
 
         Composite parent = form.getBody();
         TableWrapLayout twl = new TableWrapLayout();
@@ -152,7 +152,7 @@
     {
         // Creation of the section
         Section section = toolkit.createSection( parent, Section.TITLE_BAR );
-        section.setText( Messages.getString("GeneralPage.Protocols") ); //$NON-NLS-1$
+        section.setText( Messages.getString( "GeneralPage.Protocols" ) ); //$NON-NLS-1$
         section.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
         Composite client = toolkit.createComposite( section );
         toolkit.paintBordersFor( client );
@@ -161,51 +161,57 @@
 
         // LDAP
         Composite ldapProtocolComposite = createProtocolComposite( toolkit, client );
-        enableLdapCheckbox = toolkit.createButton( ldapProtocolComposite, Messages.getString("GeneralPage.EnableLDAP"), SWT.CHECK ); //$NON-NLS-1$
+        enableLdapCheckbox = toolkit.createButton( ldapProtocolComposite,
+            Messages.getString( "GeneralPage.EnableLDAP" ), SWT.CHECK ); //$NON-NLS-1$
         enableLdapCheckbox.setLayoutData( new GridData( SWT.NONE, SWT.NONE, true, false, 3, 1 ) );
         toolkit.createLabel( ldapProtocolComposite, "    " ); //$NON-NLS-1$
-        toolkit.createLabel( ldapProtocolComposite, Messages.getString("GeneralPage.Port") ); //$NON-NLS-1$
+        toolkit.createLabel( ldapProtocolComposite, Messages.getString( "GeneralPage.Port" ) ); //$NON-NLS-1$
         ldapPortText = createPortText( toolkit, ldapProtocolComposite );
 
         // LDAPS
         Composite ldapsProtocolComposite = createProtocolComposite( toolkit, client );
-        enableLdapsCheckbox = toolkit.createButton( ldapsProtocolComposite, Messages.getString("GeneralPage.EnableLDAPS"), SWT.CHECK ); //$NON-NLS-1$
+        enableLdapsCheckbox = toolkit.createButton( ldapsProtocolComposite, Messages
+            .getString( "GeneralPage.EnableLDAPS" ), SWT.CHECK ); //$NON-NLS-1$
         enableLdapsCheckbox.setLayoutData( new GridData( SWT.NONE, SWT.NONE, true, false, 3, 1 ) );
         toolkit.createLabel( ldapsProtocolComposite, "    " ); //$NON-NLS-1$
-        toolkit.createLabel( ldapsProtocolComposite, Messages.getString("GeneralPage.Port") ); //$NON-NLS-1$
+        toolkit.createLabel( ldapsProtocolComposite, Messages.getString( "GeneralPage.Port" ) ); //$NON-NLS-1$
         ldapsPortText = createPortText( toolkit, ldapsProtocolComposite );
 
         // Kerberos
         Composite kerberosProtocolComposite = createProtocolComposite( toolkit, client );
-        enableKerberosCheckbox = toolkit.createButton( kerberosProtocolComposite, Messages.getString("GeneralPage.EnableKerberos"), SWT.CHECK ); //$NON-NLS-1$
+        enableKerberosCheckbox = toolkit.createButton( kerberosProtocolComposite, Messages
+            .getString( "GeneralPage.EnableKerberos" ), SWT.CHECK ); //$NON-NLS-1$
         enableKerberosCheckbox.setLayoutData( new GridData( SWT.NONE, SWT.NONE, true, false, 3, 1 ) );
         toolkit.createLabel( kerberosProtocolComposite, "    " ); //$NON-NLS-1$
-        toolkit.createLabel( kerberosProtocolComposite, Messages.getString("GeneralPage.Port") ); //$NON-NLS-1$
+        toolkit.createLabel( kerberosProtocolComposite, Messages.getString( "GeneralPage.Port" ) ); //$NON-NLS-1$
         kerberosPortText = createPortText( toolkit, kerberosProtocolComposite );
 
         // NTP
         Composite ntpProtocolComposite = createProtocolComposite( toolkit, client );
-        enableNtpCheckbox = toolkit.createButton( ntpProtocolComposite, Messages.getString("GeneralPage.EnableNTP"), SWT.CHECK ); //$NON-NLS-1$
+        enableNtpCheckbox = toolkit.createButton( ntpProtocolComposite,
+            Messages.getString( "GeneralPage.EnableNTP" ), SWT.CHECK ); //$NON-NLS-1$
         enableNtpCheckbox.setLayoutData( new GridData( SWT.NONE, SWT.NONE, true, false, 3, 1 ) );
         toolkit.createLabel( ntpProtocolComposite, "    " ); //$NON-NLS-1$
-        toolkit.createLabel( ntpProtocolComposite, Messages.getString("GeneralPage.Port") ); //$NON-NLS-1$
+        toolkit.createLabel( ntpProtocolComposite, Messages.getString( "GeneralPage.Port" ) ); //$NON-NLS-1$
         ntpPortText = createPortText( toolkit, ntpProtocolComposite );
 
         // DNS
         Composite dnsProtocolComposite = createProtocolComposite( toolkit, client );
-        enableDnsCheckbox = toolkit.createButton( dnsProtocolComposite, Messages.getString("GeneralPage.EnableDNS"), SWT.CHECK ); //$NON-NLS-1$
+        enableDnsCheckbox = toolkit.createButton( dnsProtocolComposite,
+            Messages.getString( "GeneralPage.EnableDNS" ), SWT.CHECK ); //$NON-NLS-1$
         enableDnsCheckbox.setLayoutData( new GridData( SWT.NONE, SWT.NONE, true, false, 3, 1 ) );
         toolkit.createLabel( dnsProtocolComposite, "    " ); //$NON-NLS-1$
-        toolkit.createLabel( dnsProtocolComposite, Messages.getString("GeneralPage.Port") ); //$NON-NLS-1$
+        toolkit.createLabel( dnsProtocolComposite, Messages.getString( "GeneralPage.Port" ) ); //$NON-NLS-1$
         dnsPortText = createPortText( toolkit, dnsProtocolComposite );
 
         // Change Password
         Composite changePasswordProtocolComposite = createProtocolComposite( toolkit, client );
-        enableChangePasswordCheckbox = toolkit.createButton( changePasswordProtocolComposite, Messages.getString("GeneralPage.EnableChangePassword"), //$NON-NLS-1$
+        enableChangePasswordCheckbox = toolkit.createButton( changePasswordProtocolComposite, Messages
+            .getString( "GeneralPage.EnableChangePassword" ), //$NON-NLS-1$
             SWT.CHECK );
         enableChangePasswordCheckbox.setLayoutData( new GridData( SWT.NONE, SWT.NONE, true, false, 3, 1 ) );
         toolkit.createLabel( changePasswordProtocolComposite, "    " ); //$NON-NLS-1$
-        toolkit.createLabel( changePasswordProtocolComposite, Messages.getString("GeneralPage.Port") ); //$NON-NLS-1$
+        toolkit.createLabel( changePasswordProtocolComposite, Messages.getString( "GeneralPage.Port" ) ); //$NON-NLS-1$
         changePasswordPortText = createPortText( toolkit, changePasswordProtocolComposite );
     }
 
@@ -277,7 +283,7 @@
     {
         // Creation of the section
         Section section = toolkit.createSection( parent, Section.TITLE_BAR );
-        section.setText( Messages.getString("GeneralPage.Limits") ); //$NON-NLS-1$
+        section.setText( Messages.getString( "GeneralPage.Limits" ) ); //$NON-NLS-1$
         section.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
         Composite client = toolkit.createComposite( section );
         toolkit.paintBordersFor( client );
@@ -286,7 +292,7 @@
         section.setClient( client );
 
         // Max. Time Limit
-        toolkit.createLabel( client, Messages.getString("GeneralPage.MaxTimeLimit") ); //$NON-NLS-1$
+        toolkit.createLabel( client, Messages.getString( "GeneralPage.MaxTimeLimit" ) ); //$NON-NLS-1$
         maxTimeLimitText = toolkit.createText( client, "" ); //$NON-NLS-1$
         maxTimeLimitText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
         maxTimeLimitText.addVerifyListener( new VerifyListener()
@@ -301,7 +307,7 @@
         } );
 
         // Max. Size Limit
-        toolkit.createLabel( client, Messages.getString("GeneralPage.MaxSizeLimit") ); //$NON-NLS-1$
+        toolkit.createLabel( client, Messages.getString( "GeneralPage.MaxSizeLimit" ) ); //$NON-NLS-1$
         maxSizeLimitText = toolkit.createText( client, "" ); //$NON-NLS-1$
         maxSizeLimitText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
         maxSizeLimitText.addVerifyListener( new VerifyListener()
@@ -316,7 +322,7 @@
         } );
 
         // Synchronization Period
-        toolkit.createLabel( client, Messages.getString("GeneralPage.SyncPeriod") ); //$NON-NLS-1$
+        toolkit.createLabel( client, Messages.getString( "GeneralPage.SyncPeriod" ) ); //$NON-NLS-1$
         synchPeriodText = toolkit.createText( client, "" ); //$NON-NLS-1$
         synchPeriodText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
         synchPeriodText.addVerifyListener( new VerifyListener()
@@ -331,7 +337,7 @@
         } );
 
         // Max. Threads
-        toolkit.createLabel( client, Messages.getString("GeneralPage.MaxThreads") ); //$NON-NLS-1$
+        toolkit.createLabel( client, Messages.getString( "GeneralPage.MaxThreads" ) ); //$NON-NLS-1$
         maxThreadsText = toolkit.createText( client, "" ); //$NON-NLS-1$
         maxThreadsText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
         maxThreadsText.addVerifyListener( new VerifyListener()
@@ -359,7 +365,7 @@
     {
         // Creation of the section
         Section section = toolkit.createSection( parent, Section.TITLE_BAR );
-        section.setText( Messages.getString("GeneralPage.Options") ); //$NON-NLS-1$
+        section.setText( Messages.getString( "GeneralPage.Options" ) ); //$NON-NLS-1$
         section.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
         Composite client = toolkit.createComposite( section );
         toolkit.paintBordersFor( client );
@@ -367,15 +373,18 @@
         section.setClient( client );
 
         // Allow Anonymous Access
-        allowAnonymousAccessCheckbox = toolkit.createButton( client, Messages.getString("GeneralPage.AllowAnonymousAccess"), SWT.CHECK ); //$NON-NLS-1$
+        allowAnonymousAccessCheckbox = toolkit.createButton( client, Messages
+            .getString( "GeneralPage.AllowAnonymousAccess" ), SWT.CHECK ); //$NON-NLS-1$
         allowAnonymousAccessCheckbox.setLayoutData( new GridData( SWT.NONE, SWT.NONE, true, false ) );
 
         // Enable Access Control
-        enableAccesControlCheckbox = toolkit.createButton( client, Messages.getString("GeneralPage.EnableAccessControl"), SWT.CHECK ); //$NON-NLS-1$
+        enableAccesControlCheckbox = toolkit.createButton( client, Messages
+            .getString( "GeneralPage.EnableAccessControl" ), SWT.CHECK ); //$NON-NLS-1$
         enableAccesControlCheckbox.setLayoutData( new GridData( SWT.NONE, SWT.NONE, true, false ) );
 
         // Denormalize Operational Attributes
-        denormalizeOpAttrCheckbox = toolkit.createButton( client, Messages.getString("GeneralPage.DenormalizeOperationalAttributes"), SWT.CHECK ); //$NON-NLS-1$
+        denormalizeOpAttrCheckbox = toolkit.createButton( client, Messages
+            .getString( "GeneralPage.DenormalizeOperationalAttributes" ), SWT.CHECK ); //$NON-NLS-1$
         denormalizeOpAttrCheckbox.setLayoutData( new GridData( SWT.NONE, SWT.NONE, true, false ) );
     }
 

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/InterceptorDetailsPage.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/InterceptorDetailsPage.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/InterceptorDetailsPage.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/InterceptorDetailsPage.java Wed Oct 21 09:26:39 2009
@@ -114,13 +114,13 @@
         section.setClient( client );
 
         // Name
-        toolkit.createLabel( client, Messages.getString("InterceptorDetailsPage.Name") ); //$NON-NLS-1$
+        toolkit.createLabel( client, Messages.getString( "InterceptorDetailsPage.Name" ) ); //$NON-NLS-1$
         nameText = toolkit.createText( client, "" ); //$NON-NLS-1$
         nameText.setEditable( false );
         nameText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
 
         // Description
-        toolkit.createLabel( client, Messages.getString("InterceptorDetailsPage.Description") ); //$NON-NLS-1$
+        toolkit.createLabel( client, Messages.getString( "InterceptorDetailsPage.Description" ) ); //$NON-NLS-1$
         descriptionText = toolkit.createText( client, "", SWT.MULTI | SWT.WRAP | SWT.V_SCROLL ); //$NON-NLS-1$
         descriptionText.setEditable( false );
         GridData gridData = new GridData( SWT.FILL, SWT.NONE, true, false );

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/InterceptorsMasterDetailsBlock.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/InterceptorsMasterDetailsBlock.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/InterceptorsMasterDetailsBlock.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/InterceptorsMasterDetailsBlock.java Wed Oct 21 09:26:39 2009
@@ -106,9 +106,8 @@
 
         // Creating the Section
         Section section = toolkit.createSection( parent, Section.TITLE_BAR | Section.DESCRIPTION );
-        section.setText( Messages.getString("InterceptorsMasterDetailsBlock.AllInterceptors") ); //$NON-NLS-1$
-        section
-            .setDescription( Messages.getString("InterceptorsMasterDetailsBlock.SetTheInterceptorsDescription") ); //$NON-NLS-1$
+        section.setText( Messages.getString( "InterceptorsMasterDetailsBlock.AllInterceptors" ) ); //$NON-NLS-1$
+        section.setDescription( Messages.getString( "InterceptorsMasterDetailsBlock.SetTheInterceptorsDescription" ) ); //$NON-NLS-1$
         section.marginWidth = 10;
         section.marginHeight = 5;
         Composite client = toolkit.createComposite( section, SWT.WRAP );
@@ -160,18 +159,20 @@
         } );
 
         // Creating the button(s)
-        addButton = toolkit.createButton( client, Messages.getString("InterceptorsMasterDetailsBlock.Add"), SWT.PUSH ); //$NON-NLS-1$
+        addButton = toolkit.createButton( client, Messages.getString( "InterceptorsMasterDetailsBlock.Add" ), SWT.PUSH ); //$NON-NLS-1$
         addButton.setLayoutData( new GridData( SWT.FILL, SWT.BEGINNING, false, false ) );
 
-        deleteButton = toolkit.createButton( client, Messages.getString("InterceptorsMasterDetailsBlock.Delete"), SWT.PUSH ); //$NON-NLS-1$
+        deleteButton = toolkit.createButton( client,
+            Messages.getString( "InterceptorsMasterDetailsBlock.Delete" ), SWT.PUSH ); //$NON-NLS-1$
         deleteButton.setEnabled( false );
         deleteButton.setLayoutData( new GridData( SWT.FILL, SWT.BEGINNING, false, false ) );
 
-        upButton = toolkit.createButton( client, Messages.getString("InterceptorsMasterDetailsBlock.Up"), SWT.PUSH ); //$NON-NLS-1$
+        upButton = toolkit.createButton( client, Messages.getString( "InterceptorsMasterDetailsBlock.Up" ), SWT.PUSH ); //$NON-NLS-1$
         upButton.setEnabled( false );
         upButton.setLayoutData( new GridData( SWT.FILL, SWT.BEGINNING, false, false ) );
 
-        downButton = toolkit.createButton( client, Messages.getString("InterceptorsMasterDetailsBlock.Down"), SWT.PUSH ); //$NON-NLS-1$
+        downButton = toolkit.createButton( client,
+            Messages.getString( "InterceptorsMasterDetailsBlock.Down" ), SWT.PUSH ); //$NON-NLS-1$
         downButton.setEnabled( false );
         downButton.setLayoutData( new GridData( SWT.FILL, SWT.BEGINNING, false, false ) );
 

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/InterceptorsPage.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/InterceptorsPage.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/InterceptorsPage.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/InterceptorsPage.java Wed Oct 21 09:26:39 2009
@@ -42,7 +42,7 @@
     public static final String ID = ServerConfigurationEditor.ID + ".V155.InterceptorsPage"; //$NON-NLS-1$
 
     /** The Page Title */
-    private static final String TITLE = Messages.getString("InterceptorsPage.Interceptors"); //$NON-NLS-1$
+    private static final String TITLE = Messages.getString( "InterceptorsPage.Interceptors" ); //$NON-NLS-1$
 
     /** The Master/Details Block */
     private InterceptorsMasterDetailsBlock masterDetailsBlock;
@@ -69,7 +69,7 @@
             ApacheDSConfigurationPluginConstants.PLUGIN_ID + "." + "configuration_editor_154" ); //$NON-NLS-1$ //$NON-NLS-2$
 
         final ScrolledForm form = managedForm.getForm();
-        form.setText( Messages.getString("InterceptorsPage.Interceptors") ); //$NON-NLS-1$
+        form.setText( Messages.getString( "InterceptorsPage.Interceptors" ) ); //$NON-NLS-1$
         masterDetailsBlock = new InterceptorsMasterDetailsBlock( this );
         masterDetailsBlock.createContent( managedForm );
     }

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/PartitionDetailsPage.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/PartitionDetailsPage.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/PartitionDetailsPage.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/PartitionDetailsPage.java Wed Oct 21 09:26:39 2009
@@ -220,8 +220,8 @@
     {
         Section section = toolkit.createSection( parent, Section.DESCRIPTION | Section.TITLE_BAR );
         section.marginWidth = 10;
-        section.setText( Messages.getString("PartitionDetailsPage.PartitionDetails") ); //$NON-NLS-1$
-        section.setDescription( Messages.getString("PartitionDetailsPage.PartitionsDetailsDescription") ); //$NON-NLS-1$
+        section.setText( Messages.getString( "PartitionDetailsPage.PartitionDetails" ) ); //$NON-NLS-1$
+        section.setDescription( Messages.getString( "PartitionDetailsPage.PartitionsDetailsDescription" ) ); //$NON-NLS-1$
         TableWrapData td = new TableWrapData( TableWrapData.FILL, TableWrapData.TOP );
         td.grabHorizontal = true;
         section.setLayoutData( td );
@@ -232,12 +232,12 @@
         section.setClient( client );
 
         // ID
-        toolkit.createLabel( client, Messages.getString("PartitionDetailsPage.ID") ); //$NON-NLS-1$
+        toolkit.createLabel( client, Messages.getString( "PartitionDetailsPage.ID" ) ); //$NON-NLS-1$
         idText = toolkit.createText( client, "" ); //$NON-NLS-1$
         idText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false, 2, 1 ) );
 
         // Cache Size
-        toolkit.createLabel( client, Messages.getString("PartitionDetailsPage.CacheSize") ); //$NON-NLS-1$
+        toolkit.createLabel( client, Messages.getString( "PartitionDetailsPage.CacheSize" ) ); //$NON-NLS-1$
         cacheSizeText = toolkit.createText( client, "" ); //$NON-NLS-1$
         cacheSizeText.addVerifyListener( new VerifyListener()
         {
@@ -252,16 +252,18 @@
         cacheSizeText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false, 2, 1 ) );
 
         // Suffix
-        toolkit.createLabel( client, Messages.getString("PartitionDetailsPage.Suffix") ); //$NON-NLS-1$
+        toolkit.createLabel( client, Messages.getString( "PartitionDetailsPage.Suffix" ) ); //$NON-NLS-1$
         suffixText = toolkit.createText( client, "" ); //$NON-NLS-1$
         suffixText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false, 2, 1 ) );
 
         // Enable Optimizer
-        enableOptimizerCheckbox = toolkit.createButton( client, Messages.getString("PartitionDetailsPage.EnableOptimizer"), SWT.CHECK ); //$NON-NLS-1$
+        enableOptimizerCheckbox = toolkit.createButton( client, Messages
+            .getString( "PartitionDetailsPage.EnableOptimizer" ), SWT.CHECK ); //$NON-NLS-1$
         enableOptimizerCheckbox.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false, 3, 1 ) );
 
         // Synchronisation On Write
-        synchOnWriteCheckbox = toolkit.createButton( client, Messages.getString("PartitionDetailsPage.SynchronizationOnWrite"), SWT.CHECK ); //$NON-NLS-1$
+        synchOnWriteCheckbox = toolkit.createButton( client, Messages
+            .getString( "PartitionDetailsPage.SynchronizationOnWrite" ), SWT.CHECK ); //$NON-NLS-1$
         synchOnWriteCheckbox.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false, 3, 1 ) );
     }
 
@@ -278,8 +280,9 @@
     {
         Section indexedAttributesSection = toolkit.createSection( parent, Section.DESCRIPTION | Section.TITLE_BAR );
         indexedAttributesSection.marginWidth = 10;
-        indexedAttributesSection.setText( Messages.getString("PartitionDetailsPage.IndexedAttributes") ); //$NON-NLS-1$
-        indexedAttributesSection.setDescription( Messages.getString("PartitionDetailsPage.IndexedAttributesDescription") ); //$NON-NLS-1$
+        indexedAttributesSection.setText( Messages.getString( "PartitionDetailsPage.IndexedAttributes" ) ); //$NON-NLS-1$
+        indexedAttributesSection.setDescription( Messages
+            .getString( "PartitionDetailsPage.IndexedAttributesDescription" ) ); //$NON-NLS-1$
         indexedAttributesSection.setLayoutData( new TableWrapData( TableWrapData.FILL ) );
         Composite indexedAttributesClient = toolkit.createComposite( indexedAttributesSection );
         toolkit.paintBordersFor( indexedAttributesClient );
@@ -297,14 +300,17 @@
         GridData buttonsGD = new GridData( SWT.FILL, SWT.BEGINNING, false, false );
         buttonsGD.widthHint = IDialogConstants.BUTTON_WIDTH;
 
-        indexedAttributeAddButton = toolkit.createButton( indexedAttributesClient, Messages.getString("PartitionDetailsPage.Add"), SWT.PUSH ); //$NON-NLS-1$
+        indexedAttributeAddButton = toolkit.createButton( indexedAttributesClient, Messages
+            .getString( "PartitionDetailsPage.Add" ), SWT.PUSH ); //$NON-NLS-1$
         indexedAttributeAddButton.setLayoutData( buttonsGD );
 
-        indexedAttributeEditButton = toolkit.createButton( indexedAttributesClient, Messages.getString("PartitionDetailsPage.Edit"), SWT.PUSH ); //$NON-NLS-1$
+        indexedAttributeEditButton = toolkit.createButton( indexedAttributesClient, Messages
+            .getString( "PartitionDetailsPage.Edit" ), SWT.PUSH ); //$NON-NLS-1$
         indexedAttributeEditButton.setEnabled( false );
         indexedAttributeEditButton.setLayoutData( buttonsGD );
 
-        indexedAttributeDeleteButton = toolkit.createButton( indexedAttributesClient, Messages.getString("PartitionDetailsPage.Delete"), SWT.PUSH ); //$NON-NLS-1$
+        indexedAttributeDeleteButton = toolkit.createButton( indexedAttributesClient, Messages
+            .getString( "PartitionDetailsPage.Delete" ), SWT.PUSH ); //$NON-NLS-1$
         indexedAttributeDeleteButton.setEnabled( false );
         indexedAttributeDeleteButton.setLayoutData( buttonsGD );
     }

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/PartitionsMasterDetailsBlock.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/PartitionsMasterDetailsBlock.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/PartitionsMasterDetailsBlock.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/PartitionsMasterDetailsBlock.java Wed Oct 21 09:26:39 2009
@@ -73,7 +73,7 @@
     /** The Details Page */
     private PartitionDetailsPage detailsPage;
 
-    private static final String NEW_ID = Messages.getString("PartitionsMasterDetailsBlock.NewPartition"); //$NON-NLS-1$
+    private static final String NEW_ID = Messages.getString( "PartitionsMasterDetailsBlock.NewPartition" ); //$NON-NLS-1$
 
     // UI Fields
     private TableViewer viewer;
@@ -90,7 +90,8 @@
     public PartitionsMasterDetailsBlock( FormPage page )
     {
         this.page = page;
-        serverConfiguration = ( ServerConfigurationV155 ) ( ( ServerConfigurationEditor ) page.getEditor() ).getServerConfiguration();
+        serverConfiguration = ( ServerConfigurationV155 ) ( ( ServerConfigurationEditor ) page.getEditor() )
+            .getServerConfiguration();
         partitions = serverConfiguration.getPartitions();
     }
 
@@ -104,7 +105,7 @@
 
         // Creating the Section
         Section section = toolkit.createSection( parent, Section.TITLE_BAR );
-        section.setText( Messages.getString("PartitionsMasterDetailsBlock.AllPartitions") ); //$NON-NLS-1$
+        section.setText( Messages.getString( "PartitionsMasterDetailsBlock.AllPartitions" ) ); //$NON-NLS-1$
         section.marginWidth = 10;
         section.marginHeight = 5;
         Composite client = toolkit.createComposite( section, SWT.WRAP );
@@ -139,17 +140,20 @@
             public Image getImage( Object element )
             {
 
-                return ApacheDSConfigurationPlugin.getDefault().getImage(
-                    ( ( Partition ) element ).isSystemPartition() ? ApacheDSConfigurationPluginConstants.IMG_PARTITION_SYSTEM
-                        : ApacheDSConfigurationPluginConstants.IMG_PARTITION );
+                return ApacheDSConfigurationPlugin
+                    .getDefault()
+                    .getImage(
+                        ( ( Partition ) element ).isSystemPartition() ? ApacheDSConfigurationPluginConstants.IMG_PARTITION_SYSTEM
+                            : ApacheDSConfigurationPluginConstants.IMG_PARTITION );
             }
         } );
 
         // Creating the button(s)
-        addButton = toolkit.createButton( client, Messages.getString("PartitionsMasterDetailsBlock.Add"), SWT.PUSH ); //$NON-NLS-1$
+        addButton = toolkit.createButton( client, Messages.getString( "PartitionsMasterDetailsBlock.Add" ), SWT.PUSH ); //$NON-NLS-1$
         addButton.setLayoutData( new GridData( SWT.FILL, SWT.BEGINNING, false, false ) );
 
-        deleteButton = toolkit.createButton( client, Messages.getString("PartitionsMasterDetailsBlock.Delete"), SWT.PUSH ); //$NON-NLS-1$
+        deleteButton = toolkit.createButton( client,
+            Messages.getString( "PartitionsMasterDetailsBlock.Delete" ), SWT.PUSH ); //$NON-NLS-1$
         deleteButton.setEnabled( false );
         deleteButton.setLayoutData( new GridData( SWT.FILL, SWT.BEGINNING, false, false ) );
 

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/PartitionsPage.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/PartitionsPage.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/PartitionsPage.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/PartitionsPage.java Wed Oct 21 09:26:39 2009
@@ -42,7 +42,7 @@
     public static final String ID = ServerConfigurationEditor.ID + ".V155.PartitionsPage"; //$NON-NLS-1$
 
     /** The Page Title */
-    private static final String TITLE = Messages.getString("PartitionsPage.Partitions"); //$NON-NLS-1$
+    private static final String TITLE = Messages.getString( "PartitionsPage.Partitions" ); //$NON-NLS-1$
 
     /** The Master/Details block */
     private PartitionsMasterDetailsBlock masterDetailsBlock;
@@ -69,7 +69,7 @@
             ApacheDSConfigurationPluginConstants.PLUGIN_ID + "." + "configuration_editor_154" ); //$NON-NLS-1$ //$NON-NLS-2$
 
         ScrolledForm form = managedForm.getForm();
-        form.setText( Messages.getString("PartitionsPage.Partitions") ); //$NON-NLS-1$
+        form.setText( Messages.getString( "PartitionsPage.Partitions" ) ); //$NON-NLS-1$
         masterDetailsBlock = new PartitionsMasterDetailsBlock( this );
         masterDetailsBlock.createContent( managedForm );
     }

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/AttributeValueDialog.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/AttributeValueDialog.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/AttributeValueDialog.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/AttributeValueDialog.java Wed Oct 21 09:26:39 2009
@@ -69,7 +69,7 @@
     protected void configureShell( Shell newShell )
     {
         super.configureShell( newShell );
-        newShell.setText( Messages.getString("AttributeValueDialog.AttributeValueDialog") ); //$NON-NLS-1$
+        newShell.setText( Messages.getString( "AttributeValueDialog.AttributeValueDialog" ) ); //$NON-NLS-1$
     }
 
 
@@ -84,13 +84,13 @@
         composite.setLayoutData( new GridData( GridData.FILL, GridData.FILL, true, true ) );
 
         Label attributeLabel = new Label( composite, SWT.NONE );
-        attributeLabel.setText( Messages.getString("AttributeValueDialog.Attribute") ); //$NON-NLS-1$
+        attributeLabel.setText( Messages.getString( "AttributeValueDialog.Attribute" ) ); //$NON-NLS-1$
 
         attributeText = new Text( composite, SWT.BORDER );
         attributeText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
 
         Label valueLabel = new Label( composite, SWT.NONE );
-        valueLabel.setText( Messages.getString("AttributeValueDialog.Value") ); //$NON-NLS-1$
+        valueLabel.setText( Messages.getString( "AttributeValueDialog.Value" ) ); //$NON-NLS-1$
 
         valueText = new Text( composite, SWT.BORDER );
         valueText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/ExtendedOperationDialog.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/ExtendedOperationDialog.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/ExtendedOperationDialog.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/ExtendedOperationDialog.java Wed Oct 21 09:26:39 2009
@@ -88,7 +88,7 @@
     protected void configureShell( Shell newShell )
     {
         super.configureShell( newShell );
-        newShell.setText( Messages.getString("ExtendedOperationDialog.AddAnExtendedOperation") ); //$NON-NLS-1$
+        newShell.setText( Messages.getString( "ExtendedOperationDialog.AddAnExtendedOperation" ) ); //$NON-NLS-1$
     }
 
 
@@ -103,7 +103,7 @@
 
         // Choose Label
         Label chooseLabel = new Label( composite, SWT.NONE );
-        chooseLabel.setText( Messages.getString("ExtendedOperationDialog.ChooseAnExtendedOperation") ); //$NON-NLS-1$
+        chooseLabel.setText( Messages.getString( "ExtendedOperationDialog.ChooseAnExtendedOperation" ) ); //$NON-NLS-1$
         chooseLabel.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
 
         // Interceptors Table Viewer

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/IndexedAttributeDialog.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/IndexedAttributeDialog.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/IndexedAttributeDialog.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/IndexedAttributeDialog.java Wed Oct 21 09:26:39 2009
@@ -72,7 +72,7 @@
     protected void configureShell( Shell newShell )
     {
         super.configureShell( newShell );
-        newShell.setText( Messages.getString("IndexedAttributeDialog.IndexedAttributeDialog") ); //$NON-NLS-1$
+        newShell.setText( Messages.getString( "IndexedAttributeDialog.IndexedAttributeDialog" ) ); //$NON-NLS-1$
     }
 
 
@@ -87,13 +87,13 @@
         composite.setLayoutData( new GridData( GridData.FILL, GridData.FILL, true, true ) );
 
         Label attributeIdLabel = new Label( composite, SWT.NONE );
-        attributeIdLabel.setText( Messages.getString("IndexedAttributeDialog.AttributeID") ); //$NON-NLS-1$
+        attributeIdLabel.setText( Messages.getString( "IndexedAttributeDialog.AttributeID" ) ); //$NON-NLS-1$
 
         attributeIdText = new Text( composite, SWT.BORDER );
         attributeIdText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
 
         Label cacheSizeLabel = new Label( composite, SWT.NONE );
-        cacheSizeLabel.setText( Messages.getString("IndexedAttributeDialog.CacheSize") ); //$NON-NLS-1$
+        cacheSizeLabel.setText( Messages.getString( "IndexedAttributeDialog.CacheSize" ) ); //$NON-NLS-1$
 
         cacheSizeText = new Text( composite, SWT.BORDER );
         cacheSizeText.addVerifyListener( new VerifyListener()

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/InterceptorDialog.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/InterceptorDialog.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/InterceptorDialog.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/InterceptorDialog.java Wed Oct 21 09:26:39 2009
@@ -88,7 +88,7 @@
     protected void configureShell( Shell newShell )
     {
         super.configureShell( newShell );
-        newShell.setText( Messages.getString("InterceptorDialog.AddAnInterceptor") ); //$NON-NLS-1$
+        newShell.setText( Messages.getString( "InterceptorDialog.AddAnInterceptor" ) ); //$NON-NLS-1$
     }
 
 
@@ -103,7 +103,7 @@
 
         // Choose Label
         Label chooseLabel = new Label( composite, SWT.NONE );
-        chooseLabel.setText( Messages.getString("InterceptorDialog.ChooseAnInterceptor") ); //$NON-NLS-1$
+        chooseLabel.setText( Messages.getString( "InterceptorDialog.ChooseAnInterceptor" ) ); //$NON-NLS-1$
         chooseLabel.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
 
         // Interceptors Table Viewer

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/NtlmProviderDialog.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/NtlmProviderDialog.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/NtlmProviderDialog.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/NtlmProviderDialog.java Wed Oct 21 09:26:39 2009
@@ -71,7 +71,7 @@
     protected void configureShell( Shell newShell )
     {
         super.configureShell( newShell );
-        newShell.setText( Messages.getString("NtlmProviderDialog.NtlmProviderDialog") ); //$NON-NLS-1$
+        newShell.setText( Messages.getString( "NtlmProviderDialog.NtlmProviderDialog" ) ); //$NON-NLS-1$
     }
 
 
@@ -86,7 +86,7 @@
         composite.setLayoutData( new GridData( GridData.FILL, GridData.FILL, true, true ) );
 
         Label ntlmProviderLabel = new Label( composite, SWT.NONE );
-        ntlmProviderLabel.setText( Messages.getString("NtlmProviderDialog.NtlmProvider") ); //$NON-NLS-1$
+        ntlmProviderLabel.setText( Messages.getString( "NtlmProviderDialog.NtlmProvider" ) ); //$NON-NLS-1$
 
         ntlmProviderText = new Text( composite, SWT.BORDER );
         ntlmProviderText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/SaslRealmDialog.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/SaslRealmDialog.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/SaslRealmDialog.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v155/dialogs/SaslRealmDialog.java Wed Oct 21 09:26:39 2009
@@ -71,7 +71,7 @@
     protected void configureShell( Shell newShell )
     {
         super.configureShell( newShell );
-        newShell.setText( Messages.getString("SaslRealmDialog.SaslRealmDialog") ); //$NON-NLS-1$
+        newShell.setText( Messages.getString( "SaslRealmDialog.SaslRealmDialog" ) ); //$NON-NLS-1$
     }
 
 
@@ -86,7 +86,7 @@
         composite.setLayoutData( new GridData( GridData.FILL, GridData.FILL, true, true ) );
 
         Label saslRealmLabel = new Label( composite, SWT.NONE );
-        saslRealmLabel.setText( Messages.getString("SaslRealmDialog.SaslRealm") ); //$NON-NLS-1$
+        saslRealmLabel.setText( Messages.getString( "SaslRealmDialog.SaslRealm" ) ); //$NON-NLS-1$
 
         saslRealmText = new Text( composite, SWT.BORDER );
         saslRealmText.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v151/ServerConfigurationV151.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v151/ServerConfigurationV151.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v151/ServerConfigurationV151.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v151/ServerConfigurationV151.java Wed Oct 21 09:26:39 2009
@@ -40,7 +40,7 @@
 
     /** The flag for Enable LDAP */
     private boolean enableLdap;
-    
+
     /** The port */
     private int ldapPort;
 

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v151/ServerXmlIOV151.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v151/ServerXmlIOV151.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v151/ServerXmlIOV151.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v151/ServerXmlIOV151.java Wed Oct 21 09:26:39 2009
@@ -929,7 +929,7 @@
 
         // CustomEditors Bean
         createCustomEditorsBean( root );
-        
+
         // Adding specific doctype
         document.addDocType( "beans", "-//SPRING//DTD BEAN//EN", //$NON-NLS-1$ //$NON-NLS-2$
             "http://www.springframework.org/dtd/spring-beans.dtd" ); //$NON-NLS-1$
@@ -938,7 +938,7 @@
         OutputStream os = new ByteArrayOutputStream();
         OutputFormat outformat = OutputFormat.createPrettyPrint();
         outformat.setEncoding( "UTF-8" ); //$NON-NLS-1$
-        
+
         // Writing the XML.
         XMLWriter writer = new XMLWriter( os, outformat );
         writer.write( document );

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v152/ReplicationInterceptorConfiguration.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v152/ReplicationInterceptorConfiguration.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v152/ReplicationInterceptorConfiguration.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v152/ReplicationInterceptorConfiguration.java Wed Oct 21 09:26:39 2009
@@ -19,6 +19,7 @@
  */
 package org.apache.directory.studio.apacheds.configuration.model.v152;
 
+
 /**
  * This class implements a interceptor configuration for the replication interceptor. 
  *

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v152/ServerConfigurationV152.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v152/ServerConfigurationV152.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v152/ServerConfigurationV152.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v152/ServerConfigurationV152.java Wed Oct 21 09:26:39 2009
@@ -559,6 +559,7 @@
         return enableKerberos;
     }
 
+
     /**
      * Gets the Enable LDAP flag.
      *
@@ -569,8 +570,8 @@
     {
         return enableLdap;
     }
-    
-    
+
+
     /**
      * Gets the Enable LDAPS flag.
      *
@@ -785,7 +786,7 @@
     {
         this.enableLdaps = enableLdaps;
     }
-    
+
 
     /**
      * Sets the Enable LDAP flag.

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v152/ServerXmlIOV152.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v152/ServerXmlIOV152.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v152/ServerXmlIOV152.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v152/ServerXmlIOV152.java Wed Oct 21 09:26:39 2009
@@ -1415,13 +1415,13 @@
         OutputStream os = new ByteArrayOutputStream();
         OutputFormat outformat = OutputFormat.createPrettyPrint();
         outformat.setEncoding( "UTF-8" ); //$NON-NLS-1$
-        
+
         // Writing the XML.
         XMLWriter writer = new XMLWriter( os, outformat );
         writer.write( document );
         writer.flush();
         writer.close();
-        
+
         return os.toString();
     }
 

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v153/ReplicationInterceptorConfiguration.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v153/ReplicationInterceptorConfiguration.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v153/ReplicationInterceptorConfiguration.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v153/ReplicationInterceptorConfiguration.java Wed Oct 21 09:26:39 2009
@@ -19,6 +19,7 @@
  */
 package org.apache.directory.studio.apacheds.configuration.model.v153;
 
+
 /**
  * This class implements a interceptor configuration for the replication interceptor. 
  *

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v153/ServerConfigurationV153.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v153/ServerConfigurationV153.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v153/ServerConfigurationV153.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v153/ServerConfigurationV153.java Wed Oct 21 09:26:39 2009
@@ -559,6 +559,7 @@
         return enableKerberos;
     }
 
+
     /**
      * Gets the Enable LDAP flag.
      *
@@ -569,8 +570,8 @@
     {
         return enableLdap;
     }
-    
-    
+
+
     /**
      * Gets the Enable LDAPS flag.
      *
@@ -785,7 +786,7 @@
     {
         this.enableLdaps = enableLdaps;
     }
-    
+
 
     /**
      * Sets the Enable LDAP flag.

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v153/ServerXmlIOV153.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v153/ServerXmlIOV153.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v153/ServerXmlIOV153.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v153/ServerXmlIOV153.java Wed Oct 21 09:26:39 2009
@@ -1472,13 +1472,13 @@
         OutputStream os = new ByteArrayOutputStream();
         OutputFormat outformat = OutputFormat.createPrettyPrint();
         outformat.setEncoding( "UTF-8" ); //$NON-NLS-1$
-        
+
         // Writing the XML.
         XMLWriter writer = new XMLWriter( os, outformat );
         writer.write( document );
         writer.flush();
         writer.close();
-        
+
         return os.toString();
     }
 

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v154/ReplicationInterceptorConfiguration.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v154/ReplicationInterceptorConfiguration.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v154/ReplicationInterceptorConfiguration.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v154/ReplicationInterceptorConfiguration.java Wed Oct 21 09:26:39 2009
@@ -19,6 +19,7 @@
  */
 package org.apache.directory.studio.apacheds.configuration.model.v154;
 
+
 /**
  * This class implements a interceptor configuration for the replication interceptor. 
  *

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v154/ServerConfigurationV154.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v154/ServerConfigurationV154.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v154/ServerConfigurationV154.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v154/ServerConfigurationV154.java Wed Oct 21 09:26:39 2009
@@ -559,6 +559,7 @@
         return enableKerberos;
     }
 
+
     /**
      * Gets the Enable LDAP flag.
      *
@@ -569,8 +570,8 @@
     {
         return enableLdap;
     }
-    
-    
+
+
     /**
      * Gets the Enable LDAPS flag.
      *
@@ -785,7 +786,7 @@
     {
         this.enableLdaps = enableLdaps;
     }
-    
+
 
     /**
      * Sets the Enable LDAP flag.

Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v155/ReplicationInterceptorConfiguration.java
URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v155/ReplicationInterceptorConfiguration.java?rev=827937&r1=827936&r2=827937&view=diff
==============================================================================
--- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v155/ReplicationInterceptorConfiguration.java (original)
+++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/model/v155/ReplicationInterceptorConfiguration.java Wed Oct 21 09:26:39 2009
@@ -19,6 +19,7 @@
  */
 package org.apache.directory.studio.apacheds.configuration.model.v155;
 
+
 /**
  * This class implements a interceptor configuration for the replication interceptor. 
  *