86 lines
5.8 KiB
HTML
86 lines
5.8 KiB
HTML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-us">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="dc.language" scheme="rfc1766" content="en-us" />
|
|
<!-- All rights reserved. Licensed Materials Property of IBM -->
|
|
<!-- US Government Users Restricted Rights -->
|
|
<!-- Use, duplication or disclosure restricted by -->
|
|
<!-- GSA ADP Schedule Contract with IBM Corp. -->
|
|
<meta name="dc.date" scheme="iso8601" content="2005-09-06" />
|
|
<meta name="copyright" content="(C) Copyright IBM Corporation 1998, 2006" />
|
|
<meta name="security" content="public" />
|
|
<meta name="Robots" content="index,follow"/>
|
|
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
|
|
<title>Directory Server (LDAP) - Edit an object class</title>
|
|
<link rel="stylesheet" type="text/css" href="ibmidwb.css" />
|
|
<link rel="stylesheet" type="text/css" href="ic.css" />
|
|
</head>
|
|
<body>
|
|
<a id="Top_Of_Page" name="Top_Of_Page"></a><!-- Java sync-link -->
|
|
<script language = "Javascript" src = "../rzahg/synch.js" type="text/javascript"></script>
|
|
|
|
|
|
<a name="rzahyeditobj"></a>
|
|
<h3 id="rzahyeditobj">Edit an object class</h3>
|
|
<p>Not all schema changes are allowed. See <a href="rzahydisallowschema.htm#rzahydisallowschema">Disallowed schema changes</a> for
|
|
change restrictions.</p>
|
|
<p><span class="bold">Web administration</span></p>
|
|
<p>If you have not done so already, expand <span class="bold">Schema
|
|
management</span> in the navigation area, then click <span class="bold">Manage object classes</span>. To edit an object class:</p>
|
|
<ol type="1">
|
|
<li>Click the radio button next to the object class that you want
|
|
to edit.</li>
|
|
<li>Click <span class="bold">Edit </span>.</li>
|
|
<li>Select a tab:
|
|
<ul>
|
|
<li>Use the <span class="bold">General</span> tab to:
|
|
<ul>
|
|
<li>Change the <span class="bold">Description</span>.</li>
|
|
<li>Change the <span class="bold">Superior object class</span>. Select a Superior object class from the drop-down list. This determines
|
|
the object class from which other attributes are inherited. Typically the <span class="bold">Superior object class</span> is <span class="bold">top</span>, however, it can be another object class. For example, a superior
|
|
object class for <span class="bold">tempEmployee</span> might be <span class="bold">ePerson</span>.</li>
|
|
<li>Change the <span class="bold">Object class type</span>. Select an
|
|
object class type. See <a href="rzahyobjectclass.htm#rzahyobjectclass">Object classes</a> for additional information
|
|
about object class types.</li>
|
|
<li>Click the Attributes tab to change the required and the optional
|
|
attributes for the object class and view the inherited attributes, or click <span class="bold">OK</span> to apply your changes or click <span class="bold">Cancel</span> to return to <span class="bold">Manage object classes</span> without making any changes.</li></ul></li>
|
|
<li>Use the <span class="bold">Attributes</span> tab to:
|
|
<p>Select an
|
|
attribute from the alphabetical list of <span class="bold">Available
|
|
attributes</span> and click <span class="bold">Add to required</span> to
|
|
make the attribute required or click <span class="bold">Add to optional</span> to make the attribute optional for the object class. The attribute is
|
|
displayed in the appropriate list of selected attributes.</p>
|
|
<p>Repeat this
|
|
process for all the attributes you want to select.</p>
|
|
<p>You can move an attribute
|
|
from one list to another or delete the attribute from the selected lists by
|
|
selecting it and clicking the appropriate <span class="bold">Move
|
|
to</span> or <span class="bold">Delete</span> button.</p>
|
|
<p>You can view
|
|
the lists of required and optional inherited attributes. Inherited attributes
|
|
are based on the <span class="bold">Superior object class</span> selected
|
|
on the <span class="bold">General</span> tab. You cannot change the
|
|
inherited attributes. However, if you change the <span class="bold">Superior object class</span> on the <span class="bold">General</span> tab,
|
|
a different set of inherited attributes is displayed.</p></li></ul></li>
|
|
<li>Click <span class="bold">OK</span> to apply the changes
|
|
or click <span class="bold">Cancel</span> to return to <span class="bold">Manage object classes</span> without making any changes.</li></ol>
|
|
<p><span class="bold">Command line</span></p>
|
|
<p>View the object classes contained in the schema issue the command:</p>
|
|
<pre class="xmp">ldapsearch -b cn=schema -s base objectclass=* objectclasses</pre>
|
|
<p>To edit an object class using the command line, issue the following command:</p>
|
|
<pre class="xmp">ldapmodify -D <<span class="italic">adminDN</span>> -w <<span class="italic">adminPW</span>> -i <<span class="italic">filename</span>>
|
|
</pre><p class="indatacontent">where <<span class="italic">filename</span>>contains:</p>
|
|
<pre class="xmp">dn: cn=schema
|
|
changetype: modify
|
|
replace: objectclasses
|
|
objectclasses: ( <<span class="italic">myobjectClass-oid</span>> NAME '<<span class="italic">myObjectClass</span>>' DESC '<<span class="italic">An object class
|
|
I defined for my LDAP application</span>>' SUP '<<span class="italic">newsuperiorclassobject</span>>'
|
|
<<span class="italic">newobjectclasstype</span>> MAY (<span class="italic">attribute1</span>> $ <<span class="italic">attribute2</span>>
|
|
$ <<span class="italic">newattribute3</span>>) )</pre>
|
|
<a id="Bot_Of_Page" name="Bot_Of_Page"></a>
|
|
</body>
|
|
</html>
|