com.badlogic.gdx.pay.Offer Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* 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.
******************************************************************************/
package com.badlogic.gdx.pay;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
/** A product offer that can be purchased. */
public class Offer {
/** The offer type. */
private OfferType type;
/** The default identifier that is used to identify purchases and also serves as default for stores where no specific identifier
* has been set. */
private String identifier;
/** Store specific identifiers. For simplicity it's probably best to not set one but use the default identifier instead. */
private Map identifierForStores = new HashMap(16);
public synchronized OfferType getType () {
return type;
}
public synchronized Offer setType (OfferType type) {
this.type = type;
// and return this for chaining
return this;
}
public synchronized String getIdentifier () {
return identifier;
}
public synchronized Offer setIdentifier (String identifier) {
this.identifier = identifier;
// and return this for chaining
return this;
}
public synchronized String getIdentifierForStore (String storeName) {
String identifier = identifierForStores.get(storeName);
if (identifier != null) {
return identifier;
} else {
// we use our default
return this.identifier;
}
}
public synchronized Set> getIdentifierForStores () {
return identifierForStores.entrySet();
}
public synchronized Offer putIdentifierForStore (String storeName, String identifierForStore) {
identifierForStores.put(storeName, identifierForStore);
// and return this for chaining
return this;
}
@Override
public String toString() {
return "Offer{" +
"type=" + type +
", identifier='" + identifier + '\'' +
", identifierForStores=" + identifierForStores +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy