/*
* Copyright 2010-2011 Ning, Inc.
*
* Ning licenses this file to you under the Apache License, version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package com.ning.billing.jaxrs.json;
import java.util.LinkedList;
import java.util.List;
import java.util.UUID;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.ning.billing.payment.api.PaymentMethod;
import com.ning.billing.payment.api.PaymentMethodPlugin;
public class PaymentMethodJson {
private final String paymentMethodId;
private final String accountId;
private final Boolean isActive;
private final String pluginName;
private final PaymentMethodPluginDetailJson pluginInfo;
@JsonCreator
public PaymentMethodJson(@JsonProperty("paymentMethodId") String paymentMethodId,
@JsonProperty("accountId") String accountId,
@JsonProperty("isActive") Boolean isActive,
@JsonProperty("pluginName") String pluginName,
@JsonProperty("pluginInfo") PaymentMethodPluginDetailJson pluginInfo) {
super();
this.paymentMethodId = paymentMethodId;
this.accountId = accountId;
this.isActive = isActive;
this.pluginName = pluginName;
this.pluginInfo = pluginInfo;
}
public PaymentMethod toPaymentMethod() {
return new PaymentMethod() {
@Override
public Boolean isActive() {
return isActive;
}
@Override
public String getPluginName() {
return pluginName;
}
@Override
public UUID getId() {
return UUID.fromString(paymentMethodId);
}
@Override
public UUID getAccountId() {
return UUID.fromString(accountId);
}
@Override
public PaymentMethodPlugin getPluginDetail() {
return new PaymentMethodPlugin() {
@Override
public boolean isDefaultPaymentMethod() {
// N/A
return false;
}
@Override
public String getValueString(String key) {
// N/A
return null;
}
@Override
public String getExternalPaymentMethodId() {
return pluginInfo.getExternalPaymentId();
}
@Override
public List<PaymentMethodKVInfo> getProperties() {
List<PaymentMethodKVInfo> result = new LinkedList<PaymentMethodPlugin.PaymentMethodKVInfo>();
for (PaymentMethodProperties cur : pluginInfo.getProperties()) {
result.add(new PaymentMethodKVInfo(cur.getKey(), cur.getValue(), cur.isUpdatable));
}
return null;
}
};
}
};
}
public PaymentMethodJson() {
this(null, null, null, null, null);
}
public String getPaymentMethodId() {
return paymentMethodId;
}
public String getAccountId() {
return accountId;
}
public Boolean getIsActive() {
return isActive;
}
public String getPluginName() {
return pluginName;
}
public PaymentMethodPluginDetailJson getPluginInfo() {
return pluginInfo;
}
public static class PaymentMethodPluginDetailJson {
private final String externalPaymentId;
private final List<PaymentMethodProperties> properties;
@JsonCreator
public PaymentMethodPluginDetailJson(@JsonProperty("externalPaymentId") String externalPaymentId,
@JsonProperty("properties") List<PaymentMethodProperties> properties) {
super();
this.externalPaymentId = externalPaymentId;
this.properties = properties;
}
public PaymentMethodPluginDetailJson() {
this(null, null);
}
public String getExternalPaymentId() {
return externalPaymentId;
}
public List<PaymentMethodProperties> getProperties() {
return properties;
}
}
public final static class PaymentMethodProperties {
private final String key;
private final String value;
private final Boolean isUpdatable;
@JsonCreator
public PaymentMethodProperties(@JsonProperty("key") String key,
@JsonProperty("value") String value,
@JsonProperty("isUpdatable") Boolean isUpdatable) {
super();
this.key = key;
this.value = value;
this.isUpdatable = isUpdatable;
}
public PaymentMethodProperties() {
this(null, null, null);
}
public String getKey() {
return key;
}
public String getValue() {
return value;
}
public Boolean getIsUpdatable() {
return isUpdatable;
}
}
}