summaryrefslogtreecommitdiffstats
path: root/ipalib/parameters.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2009-01-14 22:19:31 -0700
committerJason Gerard DeRose <jderose@redhat.com>2009-01-14 22:19:31 -0700
commitec86208a9007ec9febca620c777b80b20e9c360d (patch)
tree2e13b9081e0f0c6757e54a52597bd2f4d0c9b649 /ipalib/parameters.py
parent64c072b7b3deb1800c242b365e277591f056093d (diff)
downloadfreeipa-ec86208a9007ec9febca620c777b80b20e9c360d.tar.gz
freeipa-ec86208a9007ec9febca620c777b80b20e9c360d.tar.xz
freeipa-ec86208a9007ec9febca620c777b80b20e9c360d.zip
Updated passwd plugins module to where it can at least be imported
Diffstat (limited to 'ipalib/parameters.py')
-rw-r--r--ipalib/parameters.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/ipalib/parameters.py b/ipalib/parameters.py
index cf658a412..fd693e71d 100644
--- a/ipalib/parameters.py
+++ b/ipalib/parameters.py
@@ -892,6 +892,12 @@ class Str(Data):
)
+class Password(Str):
+ """
+ A parameter for passwords (stored in the ``unicode`` type).
+ """
+
+
def create_param(spec):
"""
Create an `Str` instance from the shorthand ``spec``.