Bugzilla Bug 106386 rid source of these misspellings: persistant persistance priviledge protocal editting editted targetted targetting

r='s from many people. sr=jst


git-svn-id: svn://10.0.0.236/trunk@111049 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
timeless%mac.com
2001-12-23 23:23:41 +00:00
parent a867f620bb
commit 21c081c8bc
349 changed files with 567 additions and 564 deletions

View File

@@ -73,7 +73,7 @@ public class LDAPFilter implements Cloneable {
private boolean m_bIsExact;
private String m_strMatchPattern; // token 1 from filter configuration file
private String m_strDelimeter; // token 2 from filter configuration file
private String m_strDelimiter; // token 2 from filter configuration file
private String m_strFilterTemplate; // token 3 from filter configuration file
private int m_nLine;
@@ -102,13 +102,13 @@ public class LDAPFilter implements Cloneable {
* <CODE>illegalArgumentException</CODE>.
*/
public LDAPFilter ( String strMatchPattern,
String strDelimeter,
String strDelimiter,
String strFilterTemplate,
String strDescription,
int nScope ) throws IllegalArgumentException{
m_strMatchPattern = convertMatchPattern ( strMatchPattern );
m_strDelimeter = strDelimeter;
m_strDelimiter = strDelimiter;
m_strFilterTemplate = strFilterTemplate;
m_strDescription = strDescription;
m_nScope = nScope;
@@ -137,7 +137,7 @@ public class LDAPFilter implements Cloneable {
* <CODE>illegalArgumentException</CODE>.
*/
public LDAPFilter ( String strMatchPattern,
String strDelimeter,
String strDelimiter,
String strFilterTemplate,
String strDescription,
String strScope )
@@ -153,7 +153,7 @@ public class LDAPFilter implements Cloneable {
}
m_strMatchPattern = strMatchPattern;
m_strDelimeter = strDelimeter;
m_strDelimiter = strDelimiter;
m_strFilterTemplate = strFilterTemplate;
m_strDescription = strDescription;
}
@@ -184,7 +184,7 @@ public class LDAPFilter implements Cloneable {
public String toString() {
StringBuffer strBuf = new StringBuffer ( 300 );
strBuf.append ( " matchPtn: \"" + m_strMatchPattern+"\"\n" );
strBuf.append ( " delim: \"" + m_strDelimeter+"\"\n" );
strBuf.append ( " delim: \"" + m_strDelimiter+"\"\n" );
strBuf.append ( " filttmpl: \"" + m_strFilterTemplate+"\"\n" );
strBuf.append ( " descript: \"" + m_strDescription+"\"\n" );
switch ( m_nScope ) {
@@ -268,7 +268,7 @@ public class LDAPFilter implements Cloneable {
void createFilterString ( String strValue, String strPrefix,
String strSuffix ) {
StringTokenizer strTok =
new StringTokenizer ( strValue, m_strDelimeter );
new StringTokenizer ( strValue, m_strDelimiter );
// Initialize an array of broken up values so that we
// can reference them directly.
@@ -470,12 +470,12 @@ public class LDAPFilter implements Cloneable {
}
/**
* Return this filter's delimeter. The delmimeter is
* Return this filter's delimiter. The delmimeter is
* found as the second token in a filter configuration line in the
* ldapfilter.conf file.
*/
public String getDelimeter() {
return m_strDelimeter;
public String getDelimiter() {
return m_strDelimiter;
}
/**

View File

@@ -65,7 +65,7 @@ public class LDAPIntFilterList {
/**
* Add a "relative" filter to an existing filter list. We do this
* becuse the ldapfilter file defines that we can have multiple
* filters per match pattern (and delimeter). This method is
* filters per match pattern (and delimiter). This method is
* called by the parent LDAPIntFilterSet because the file specified
* a "relative" filter (a filter in the ldapfilter.conf file that
* only has 2 or 3 tokens).

View File

@@ -32,7 +32,7 @@ import com.netscape.jndi.ldap.common.*;
/**
* Event Service monitors changes on the server
* Implemented with the persistant search control. Uses ldapjdk asynchronous
* Implemented with the persistent search control. Uses ldapjdk asynchronous
* interfaces so that multiple search requests can be processed by a single
* thread
*
@@ -151,7 +151,7 @@ class EventService implements Runnable{
if (ee.removeListener(listener)) {
removed = true;
// If no listeners left abandon persistant search and
// If no listeners left abandon persistent search and
// delete entry
if (ee.isEmpty()) {
abandonRequest(ee.id);
@@ -537,7 +537,7 @@ class EventService implements Runnable{
}
}
// Check if persistant search is for the same change type
// Check if persistent search is for the same change type
LDAPPersistSearchControl
psearch1 = (LDAPPersistSearchControl)this.cons.getServerControls()[0],
psearch2 = (LDAPPersistSearchControl)cons.getServerControls()[0];

View File

@@ -43,7 +43,7 @@ public class ObjectMapper {
static final String OC_SERIALOBJ = "javaSerializedObject";//aux oc
static final String OC_MARSHALOBJ = "javaMarshalledObject";//aux oc
static final String OC_REFERENCE = "javaNamingReference"; //aux oc
//static final String OC_REMOTEOBJ = "javaRemoteObject"; //aux oc, depricated
//static final String OC_REMOTEOBJ = "javaRemoteObject"; //aux oc, deprecated
static final String OC_CONTAINER = "javaContainer"; //structural oc
/**
@@ -57,7 +57,7 @@ public class ObjectMapper {
static final String AT_SERIALDATA = "javaSerializedData"; //required
static final String AT_REFADDR = "javaReferenceAddress"; //optional
static final String AT_OBJFACTORY = "javaFactory"; //optional
//static final String AT_REMOTELOC = "javaRemoteLocation"; //required, depricated
//static final String AT_REMOTELOC = "javaRemoteLocation"; //required, deprecated
//Default Object class for NameClassPair
static final String DEFAULT_OBJCLASS = "javax.naming.directory.DirContext";