This is a discussion on authentication MBean optional attribute - Weblogic ; I read on http://e-docs.bea.com/wls/docs70/dvspisec/atn.html in the section= "Optional SSPI MBeans or Custom Operations" that=20 4. If you included any custom attributes/operations in your MDF, implement = the methods using the method stubs.=20 Suppose I have this (I copied it from ...
I read on http://e-docs.bea.com/wls/docs70/dvspisec/atn.html in the section=
"Optional
SSPI MBeans or Custom Operations" that=20
4. If you included any custom attributes/operations in your MDF, implement =
the
methods using the method stubs.=20
Suppose I have this (I copied it from DefaultAuthenticator.xml inside of wl=
SecurityProviders.jar
that comes with weblogic7.0) in my MyAuthenticator.xml:
<MBeanAttribute
Name =3D "MinimumPasswordLength"
Type =3D "java.lang.Integer"
InterfaceType =3D "int"
Default =3D "new Integer(8)"
Min =3D "0"
Description =3D "The minimum number of characters required in a passwor=
d."
/>
Do I need to do anything with the generated class?
Even if I have that, the weblogic console won't show me a text box for ente=
ring
the length. How does DefaultAuthenticator do it?
Are there more examples other than SampleAuthenticator which has some optio=
nal
attributes?