1 1.1 christos # $OpenLDAP$ 2 1.1 christos ## This work is part of OpenLDAP Software <http://www.openldap.org/>. 3 1.1 christos ## 4 1.1.1.2 christos ## Copyright 2021-2024 The OpenLDAP Foundation. 5 1.1 christos ## All rights reserved. 6 1.1 christos ## 7 1.1 christos ## Redistribution and use in source and binary forms, with or without 8 1.1 christos ## modification, are permitted only as authorized by the OpenLDAP 9 1.1 christos ## Public License. 10 1.1 christos ## 11 1.1 christos ## A copy of this license is available in the file LICENSE in the 12 1.1 christos ## top-level directory of the distribution or, alternatively, at 13 1.1 christos ## <http://www.OpenLDAP.org/license.html>. 14 1.1 christos ## 15 1.1 christos ## Definitions from draft Structural Object Classes for Named Objects 16 1.1 christos ## https://tools.ietf.org/html/draft-stroeder-namedobject 17 1.1 christos ## 18 1.1 christos ## Portions Copyright (c) 2013 IETF Trust and the persons identified 19 1.1 christos ## as the document authors. All rights reserved. 20 1.1 christos # 21 1.1 christos # Depends upon core.schema and cosine.schema 22 1.1 christos 23 1.1 christos # 2.1. 'namedObject' 24 1.1 christos # 25 1.1 christos # The 'namedObject' object class definition is the basis of an entry 26 1.1 christos # that represents an arbitrary named object. The attribute 'cn' MUST 27 1.1 christos # be added to the entry. The attributes 'uniqueIdentifier' and 28 1.1 christos # 'description' MAY be added to the entry. 29 1.1 christos objectclass ( 1.3.6.1.4.1.5427.1.389.6.20 30 1.1 christos NAME 'namedObject' 31 1.1 christos SUP top 32 1.1 christos STRUCTURAL 33 1.1 christos MUST ( cn ) 34 1.1 christos MAY ( uniqueIdentifier $ description ) ) 35 1.1 christos 36 1.1 christos # 2.2. 'namedPolicy' 37 1.1 christos # 38 1.1 christos # The 'namedPolicy' object class definition is sub-classed from 39 1.1 christos # 'namedObject'. It SHOULD only be used for entries which represents 40 1.1 christos # an arbitrary policy. A typical example would be to use it along with 41 1.1 christos # auxiliary object class 'pwdPolicy' defined in 42 1.1 christos objectclass ( 1.3.6.1.4.1.5427.1.389.6.21 43 1.1 christos NAME 'namedPolicy' 44 1.1 christos SUP namedObject 45 1.1 christos STRUCTURAL ) 46 1.1 christos 47