com.unzer.payment.Metadata Maven / Gradle / Ivy
package com.unzer.payment;
/*-
* #%L
* Unzer Java SDK
* %%
* Copyright (C) 2020 Unzer E-Com GmbH
* %%
* Licensed 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.
* #L%
*/
import com.unzer.payment.communication.json.JsonObject;
import com.unzer.payment.paymenttypes.PaymentType;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.TreeMap;
public class Metadata implements PaymentType {
public Metadata() {
this(false);
}
public Metadata(boolean sorted) {
super();
if (sorted) {
metadataMap = new TreeMap();
} else {
metadataMap = new LinkedHashMap();
}
}
private String id;
private Map metadataMap;
private Unzer unzer;
public Metadata addMetadata(String key, String value) {
getMetadataMap().put(key, value);
return this;
}
public String getId() {
return id;
}
@Override
public PaymentType map(PaymentType paymentType, JsonObject jsonObject) {
return null;
}
public void setId(String id) {
this.id = id;
}
@Override
public String getTypeUrl() {
return "metadata";
}
public Unzer getUnzer() {
return unzer;
}
public void setUnzer(Unzer unzer) {
this.unzer = unzer;
}
public Map getMetadataMap() {
return metadataMap;
}
public void setMetadataMap(Map metadataMap) {
this.metadataMap = metadataMap;
}
}