All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.beimin.eveapi.parser.character.ChatChannelsParser Maven / Gradle / Ivy

There is a newer version: 7.0.4
Show newest version
package com.beimin.eveapi.parser.character;

import com.beimin.eveapi.exception.ApiException;
import com.beimin.eveapi.handler.AbstractContentHandler;
import com.beimin.eveapi.handler.character.ChatChannelsHandler;
import com.beimin.eveapi.parser.ApiAuth;
import com.beimin.eveapi.parser.ApiPage;
import com.beimin.eveapi.parser.ApiPath;
import com.beimin.eveapi.parser.shared.AbstractApiParser;
import com.beimin.eveapi.response.character.ChatChannelsResponse;

public class ChatChannelsParser extends AbstractApiParser {
    public ChatChannelsParser() {
        super(ChatChannelsResponse.class, 2, ApiPath.CHARACTER, ApiPage.CHAT_CHANNELS);
    }

    @Override
    protected AbstractContentHandler getContentHandler() {
        return new ChatChannelsHandler();
    }

    @Override
    public ChatChannelsResponse getResponse(ApiAuth auth) throws ApiException {
        return super.getResponse(auth);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy