| | |
| | | } |
| | | } |
| | | |
| | | // The singleton instance. |
| | | /** The singleton instance. */ |
| | | private static final LDAPProfile INSTANCE = new LDAPProfile(); |
| | | |
| | | /** |
| | |
| | | return INSTANCE; |
| | | } |
| | | |
| | | // The list of profile wrappers. |
| | | /** The list of profile wrappers. */ |
| | | private final LinkedList<Wrapper> profiles = new LinkedList<Wrapper>();; |
| | | |
| | | // The LDAP profile property table. |
| | | /** The LDAP profile property table. */ |
| | | private final ManagedObjectDefinitionResource resource = ManagedObjectDefinitionResource.createForProfile("ldap"); |
| | | |
| | | // Prevent construction. |
| | | /** Prevent construction. */ |
| | | private LDAPProfile() { |
| | | // No implementation required. |
| | | } |