com.ccc.crest.core.cache.crest.war.WarsCollection.java Source code

Java tutorial

Introduction

Here is the source code for com.ccc.crest.core.cache.crest.war.WarsCollection.java

Source

/*
**  Copyright (c) 2016, Chad Adams.
**
**  This program is free software: you can redistribute it and/or modify
**  it under the terms of the GNU Lesser General Public License as
**  published by the Free Software Foundation, either version 3 of the
**  License, or any later version.
**
**  This program is distributed in the hope that it will be useful,
**  but WITHOUT ANY WARRANTY; without even the implied warranty of
**  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
**  GNU General Public License for more details.
    
**  You should have received copies of the GNU GPLv3 and GNU LGPLv3
**  licenses along with this program.  If not, see http://www.gnu.org/licenses
*/
package com.ccc.crest.core.cache.crest.war;

import java.lang.reflect.Type;
import java.util.concurrent.Future;
import java.util.concurrent.atomic.AtomicBoolean;

import com.ccc.crest.core.CrestController;
import com.ccc.crest.core.ScopeToMask;
import com.ccc.crest.core.cache.BaseEveData;
import com.ccc.crest.core.cache.CrestRequestData;
import com.ccc.crest.core.cache.EveData;
import com.ccc.crest.core.cache.crest.schema.SchemaMap;
import com.ccc.crest.core.client.CrestResponseCallback;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonParseException;

@SuppressWarnings("javadoc")
public class WarsCollection extends BaseEveData implements JsonDeserializer<WarsCollection> {
    private static final long serialVersionUID = -2711682230241156568L;
    private static final AtomicBoolean continueRefresh = new AtomicBoolean(true);
    public static final String PostBase = null;
    public static final String GetBase = "application/vnd.ccp.eve.WarsCollection";
    public static final String PutBase = null;
    public static final String DeleteBase = null;
    public static final String AccessGroup = CrestController.AnonymousGroupName;
    public static final ScopeToMask.Type ScopeType = ScopeToMask.Type.CrestOnly; //?
    private static final String ReadScope = null;
    private static final String WriteScope = null;

    public WarsCollection() {
    }

    public static String getVersion(VersionType type) {
        switch (type) {
        case Delete:
            return SchemaMap.schemaMap.getSchemaFromVersionBase(DeleteBase).getVersion();
        case Get:
            return SchemaMap.schemaMap.getSchemaFromVersionBase(GetBase).getVersion();
        case Post:
            return SchemaMap.schemaMap.getSchemaFromVersionBase(PostBase).getVersion();
        case Put:
            return SchemaMap.schemaMap.getSchemaFromVersionBase(PutBase).getVersion();
        default:
            return null;
        }
    }

    public static String getUrl() {
        return SchemaMap.schemaMap.getSchemaFromVersionBase(GetBase).getUri();
    }

    public static Future<EveData> getFuture(CrestResponseCallback callback) throws Exception {
        GsonBuilder gson = new GsonBuilder();
        gson.registerTypeAdapter(WarsCollection.class, new WarsCollection());
        //@formatter:off
        CrestRequestData rdata = new CrestRequestData(null, getUrl(), gson.create(), null, WarsCollection.class,
                callback, ReadScope, getVersion(VersionType.Get), continueRefresh);
        //@formatter:on
        return CrestController.getCrestController().crestClient.getCrest(rdata);
    }

    @Override
    public WarsCollection deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context)
            throws JsonParseException {
        return null;
    }
}