src/java.naming/share/classes/javax/naming/ldap/InitialLdapContext.java
author stefank
Mon, 25 Nov 2019 15:00:32 +0100
changeset 59255 a74627659f96
parent 55131 9889f5e3ba00
permissions -rw-r--r--
8234602: ZGC: Windows compile error in ZHeuristic Reviewed-by: pliden, eosterlund
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
55131
9889f5e3ba00 8225129: Fix minor HTML issues in java.naming
jjg
parents: 47216
diff changeset
     2
 * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4349
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4349
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4349
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4349
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4349
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package javax.naming.ldap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import javax.naming.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import javax.naming.directory.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.Hashtable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
  * This class is the starting context for performing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
  * LDAPv3-style extended operations and controls.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
  *<p>
32029
a5538163e144 8132877: docs: replace <tt> tags (obsolete in html5) for javax.naming
avstepan
parents: 25859
diff changeset
    37
  * See {@code javax.naming.InitialContext} and
a5538163e144 8132877: docs: replace <tt> tags (obsolete in html5) for javax.naming
avstepan
parents: 25859
diff changeset
    38
  * {@code javax.naming.InitialDirContext} for details on synchronization,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
  * and the policy for how an initial context is created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
  *
55131
9889f5e3ba00 8225129: Fix minor HTML issues in java.naming
jjg
parents: 47216
diff changeset
    41
  * <h2>Request Controls</h2>
32029
a5538163e144 8132877: docs: replace <tt> tags (obsolete in html5) for javax.naming
avstepan
parents: 25859
diff changeset
    42
  * When you create an initial context ({@code InitialLdapContext}),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
  * you can specify a list of request controls.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
  * These controls will be used as the request controls for any
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
  * implicit LDAP "bind" operation performed by the context or contexts
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
  * derived from the context. These are called <em>connection request controls</em>.
32029
a5538163e144 8132877: docs: replace <tt> tags (obsolete in html5) for javax.naming
avstepan
parents: 25859
diff changeset
    47
  * Use {@code getConnectControls()} to get a context's connection request
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
  * controls.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
  *<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
  * The request controls supplied to the initial context constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
  * are <em>not</em> used as the context request controls
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
  * for subsequent context operations such as searches and lookups.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
  * Context request controls are set and updated by using
32029
a5538163e144 8132877: docs: replace <tt> tags (obsolete in html5) for javax.naming
avstepan
parents: 25859
diff changeset
    54
  * {@code setRequestControls()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
  *<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
  * As shown, there can be two different sets of request controls
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
  * associated with a context: connection request controls and context
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
  * request controls.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
  * This is required for those applications needing to send critical
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
  * controls that might not be applicable to both the context operation and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
  * any implicit LDAP "bind" operation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
  * A typical user program would do the following:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
  *<blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
  * InitialLdapContext lctx = new InitialLdapContext(env, critConnCtls);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
  * lctx.setRequestControls(critModCtls);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
  * lctx.modifyAttributes(name, mods);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
  * Controls[] respCtls =  lctx.getResponseControls();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
  *</pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
  * It specifies first the critical controls for creating the initial context
32029
a5538163e144 8132877: docs: replace <tt> tags (obsolete in html5) for javax.naming
avstepan
parents: 25859
diff changeset
    70
  * ({@code critConnCtls}), and then sets the context's request controls
a5538163e144 8132877: docs: replace <tt> tags (obsolete in html5) for javax.naming
avstepan
parents: 25859
diff changeset
    71
  * ({@code critModCtls}) for the context operation. If for some reason
a5538163e144 8132877: docs: replace <tt> tags (obsolete in html5) for javax.naming
avstepan
parents: 25859
diff changeset
    72
  * {@code lctx} needs to reconnect to the server, it will use
a5538163e144 8132877: docs: replace <tt> tags (obsolete in html5) for javax.naming
avstepan
parents: 25859
diff changeset
    73
  * {@code critConnCtls}. See the {@code LdapContext} interface for
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
  * more discussion about request controls.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
  *<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
  * Service provider implementors should read the "Service Provider" section
32029
a5538163e144 8132877: docs: replace <tt> tags (obsolete in html5) for javax.naming
avstepan
parents: 25859
diff changeset
    77
  * in the {@code LdapContext} class description for implementation details.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
  *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
  * @author Rosanna Lee
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
  * @author Scott Seligman
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
  * @author Vincent Ryan
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
  *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
  * @see LdapContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
  * @see javax.naming.InitialContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
  * @see javax.naming.directory.InitialDirContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
  * @see javax.naming.spi.NamingManager#setInitialContextFactoryBuilder
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
  * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
  */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
public class InitialLdapContext extends InitialDirContext implements LdapContext {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    private static final String
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        BIND_CONTROLS_PROPERTY = "java.naming.ldap.control.connect";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * Constructs an initial context using no environment properties or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * connection request controls.
32029
a5538163e144 8132877: docs: replace <tt> tags (obsolete in html5) for javax.naming
avstepan
parents: 25859
diff changeset
    97
     * Equivalent to {@code new InitialLdapContext(null, null)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * @throws  NamingException if a naming exception is encountered
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    public InitialLdapContext() throws NamingException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        super(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * Constructs an initial context
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * using environment properties and connection request controls.
32029
a5538163e144 8132877: docs: replace <tt> tags (obsolete in html5) for javax.naming
avstepan
parents: 25859
diff changeset
   108
     * See {@code javax.naming.InitialContext} for a discussion of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * environment properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * <p> This constructor will not modify its parameters or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * save references to them, but may save a clone or copy.
4349
c72a4e2ec170 6886058: JNDI LDAP InitialLdapContext SECURITY_CREDENTIALS byte[] can be corrupted, then LDAP referral fails
weijun
parents: 2
diff changeset
   113
     * Caller should not modify mutable keys and values in
32029
a5538163e144 8132877: docs: replace <tt> tags (obsolete in html5) for javax.naming
avstepan
parents: 25859
diff changeset
   114
     * {@code environment} after it has been passed to the constructor.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     *
32029
a5538163e144 8132877: docs: replace <tt> tags (obsolete in html5) for javax.naming
avstepan
parents: 25859
diff changeset
   116
     * <p> {@code connCtls} is used as the underlying context instance's
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * connection request controls.  See the class description
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * for details.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * @param environment
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     *          environment used to create the initial DirContext.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     *          Null indicates an empty environment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * @param connCtls
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     *          connection request controls for the initial context.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     *          If null, no connection request controls are used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * @throws  NamingException if a naming exception is encountered
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * @see #reconnect
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * @see LdapContext#reconnect
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     */
10324
e28265130e4f 7072353: JNDI libraries do not build with javac -Xlint:all -Werror
jjg
parents: 5506
diff changeset
   132
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    public InitialLdapContext(Hashtable<?,?> environment,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
                              Control[] connCtls)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            throws NamingException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        super(true); // don't initialize yet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        // Clone environment since caller owns it.
10324
e28265130e4f 7072353: JNDI libraries do not build with javac -Xlint:all -Werror
jjg
parents: 5506
diff changeset
   139
        Hashtable<Object,Object> env = (environment == null)
e28265130e4f 7072353: JNDI libraries do not build with javac -Xlint:all -Werror
jjg
parents: 5506
diff changeset
   140
            ? new Hashtable<>(11)
e28265130e4f 7072353: JNDI libraries do not build with javac -Xlint:all -Werror
jjg
parents: 5506
diff changeset
   141
            : (Hashtable<Object,Object>)environment.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        // Put connect controls into environment.  Copy them first since
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        // caller owns the array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        if (connCtls != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            Control[] copy = new Control[connCtls.length];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
            System.arraycopy(connCtls, 0, copy, 0, connCtls.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            env.put(BIND_CONTROLS_PROPERTY, copy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        // set version to LDAPv3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        env.put("java.naming.ldap.version", "3");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        // Initialize with updated environment
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        init(env);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * Retrieves the initial LDAP context.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * @return The non-null cached initial context.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * @exception NotContextException If the initial context is not an
32029
a5538163e144 8132877: docs: replace <tt> tags (obsolete in html5) for javax.naming
avstepan
parents: 25859
diff changeset
   162
     * instance of {@code LdapContext}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * @exception NamingException If a naming exception was encountered.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    private LdapContext getDefaultLdapInitCtx() throws NamingException{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        Context answer = getDefaultInitCtx();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        if (!(answer instanceof LdapContext)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            if (answer == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                throw new NoInitialContextException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                throw new NotContextException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                    "Not an instance of LdapContext");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        return (LdapContext)answer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
// LdapContext methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
// Most Javadoc is deferred to the LdapContext interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    public ExtendedResponse extendedOperation(ExtendedRequest request)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            throws NamingException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        return getDefaultLdapInitCtx().extendedOperation(request);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    public LdapContext newInstance(Control[] reqCtls)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        throws NamingException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            return getDefaultLdapInitCtx().newInstance(reqCtls);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    public void reconnect(Control[] connCtls) throws NamingException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        getDefaultLdapInitCtx().reconnect(connCtls);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    public Control[] getConnectControls() throws NamingException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        return getDefaultLdapInitCtx().getConnectControls();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    public void setRequestControls(Control[] requestControls)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        throws NamingException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
            getDefaultLdapInitCtx().setRequestControls(requestControls);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    public Control[] getRequestControls() throws NamingException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        return getDefaultLdapInitCtx().getRequestControls();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    public Control[] getResponseControls() throws NamingException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        return getDefaultLdapInitCtx().getResponseControls();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
}