if (provider != null) return provider;
}
EncryptionConfig config = clazz.getAnnotation(EncryptionConfig.class);
byte[] key = null;
if (config != null && config.source() == Source.PASSWORD_LOCKER) {
if ("".equals( config.sourceName() )) throw new IllegalArgumentException("Password locker source name must be provider for: " + clazz);
if (PasswordContext.get() == null) throw new IllegalStateException("No password locker available for the current context");
IPassword pw = PasswordContext.get().getPassword(config.sourceName());
if (pw == null) throw new IllegalArgumentException("No such password in current context locker: " + config.sourceName());