com.globo.globodns.client.api.ExportAPI.java Source code

Java tutorial

Introduction

Here is the source code for com.globo.globodns.client.api.ExportAPI.java

Source

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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.globo.globodns.client.api;

import java.lang.reflect.Type;
import java.util.List;

import com.fasterxml.jackson.core.type.TypeReference;
import com.globo.globodns.client.AbstractAPI;
import com.globo.globodns.client.GloboDns;
import com.globo.globodns.client.GloboDnsException;
import com.globo.globodns.client.model.GloboDnsRoot;
import com.globo.globodns.client.model.Export;

public class ExportAPI extends AbstractAPI<Export> {

    public ExportAPI(GloboDns transport) {
        super(transport);
    }

    @Override
    protected Type getType() {
        return new TypeReference<Export>() {
        }.getType();
    }

    @Override
    protected Type getListType() {
        return new TypeReference<List<Export>>() {
        }.getType();
    }

    public Export scheduleExport() throws GloboDnsException {
        GloboDnsRoot<Export> globoDnsRoot = this.post("/bind9/export", null, false);
        if (globoDnsRoot == null) {
            throw new GloboDnsException("Invalid response");
        }
        return globoDnsRoot.getFirstObject();
    }
}