org.ldaptive.props.AuthenticationRequestPropertyInvoker Maven / Gradle / Ivy
The newest version!
/* See LICENSE for licensing and NOTICE for copyright. */
package org.ldaptive.props;
import java.io.IOException;
import org.ldaptive.Credential;
import org.ldaptive.io.ResourceUtils;
/**
* Handles properties for {@link org.ldaptive.auth.AuthenticationRequest}.
*
* @author Middleware Services
*/
public class AuthenticationRequestPropertyInvoker extends AbstractPropertyInvoker
{
/**
* Creates a new authentication request property invoker for the supplied class.
*
* @param c class that has setter methods
*/
public AuthenticationRequestPropertyInvoker(final Class> c)
{
initialize(c);
}
@Override
protected Object convertValue(final Class> type, final String value)
{
Object newValue = value;
if (type != String.class) {
if (Credential.class.isAssignableFrom(type)) {
if (ResourceUtils.isResource(value)) {
try {
newValue = new Credential(ResourceUtils.readResource(value));
} catch (IOException e) {
throw new IllegalArgumentException("Could not read resource: " + value, e);
}
} else {
newValue = new Credential(value);
}
} else {
newValue = convertSimpleType(type, value);
}
}
return newValue;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy