package com.ning.billing.tenant.dao;
import java.lang.annotation.Annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.skife.jdbi.v2.SQLStatement;
import org.skife.jdbi.v2.sqlobject.Binder;
import org.skife.jdbi.v2.sqlobject.BinderFactory;
import org.skife.jdbi.v2.sqlobject.BindingAnnotation;
import com.ning.billing.tenant.api.Tenant;
@BindingAnnotation(TenantBinder.TenantBinderFactory.class)
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER})
public @interface TenantBinder {
public static class TenantBinderFactory implements BinderFactory {
@Override
public Binder<TenantBinder, Tenant> build(final Annotation annotation) {
return new Binder<TenantBinder, Tenant>() {
@Override
public void bind(@SuppressWarnings("rawtypes") final SQLStatement q, final TenantBinder bind, final Tenant tenant) {
q.bind("id", tenant.getId().toString());
q.bind("externalKey", tenant.getExternalKey());
q.bind("apiKey", tenant.getApiKey());
}
};
}
}
}