Leo Sutic wrote:
> 
> Berin,
> 
> In implementing.xml, there is a code sample that says:
> 
>     public final void configure(Configuration conf)
>     throws ConfigurationException {
>         if (!initialized || disposed) {
>             throw new IllegalStateException ("Illegal call");
>         }
> 
> which is wrong, as the initialized member is set in initialize, which is
> called after configure. And there is still:
> 
>     public final Document getDocument(Principal requestor, int refId) {
>         if (initialized || disposed) {
>             throw new IllegalStateException("Illegal call");
>         }
> 
>         // TODO: FILL IN LOGIC
>     }
> 
> Which should be "if (!initialized || disposed)", as we do not want an
> exception if the component is initialized and not disposed.

Oops, I changed the wrong section....

S/MIME Cryptographic Signature

Reply via email to