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 2011/01/27 15:57:46 UTC

svn commit: r1064142 - /directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/model/schema/registries/DefaultSchema.java

Author: pamarcelot
Date: Thu Jan 27 14:57:45 2011
New Revision: 1064142

URL: http://svn.apache.org/viewvc?rev=1064142&view=rev
Log:
Changed modifiers to 'protected' to allow classes extending the 'DefaultSchema' class to access the fields.

Modified:
    directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/model/schema/registries/DefaultSchema.java

Modified: directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/model/schema/registries/DefaultSchema.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/model/schema/registries/DefaultSchema.java?rev=1064142&r1=1064141&r2=1064142&view=diff
==============================================================================
--- directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/model/schema/registries/DefaultSchema.java (original)
+++ directory/shared/trunk/ldap/src/main/java/org/apache/directory/shared/ldap/model/schema/registries/DefaultSchema.java Thu Jan 27 14:57:45 2011
@@ -37,22 +37,22 @@ import org.apache.directory.shared.util.
 public class DefaultSchema implements Schema
 {
     /** The default schema's owner */
-    private static final String DEFAULT_OWNER = "uid=admin,ou=system";
+    protected static final String DEFAULT_OWNER = "uid=admin,ou=system";
     
     /** Tells if this schema is disabled */
-    private boolean disabled;
+    protected boolean disabled;
     
     /** Contains the list of schema it depends on */
-    private String[] dependencies;
+    protected String[] dependencies;
     
     /** The schema owner */
-    private String owner;
+    protected String owner;
     
     /** The schema name */
-    private String name;
+    protected String name;
     
     /** The set of SchemaObjects declared in this schema */
-    private Set<SchemaObjectWrapper> content;
+    protected Set<SchemaObjectWrapper> content;
     
     
     /**