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

com.centurylink.mdw.model.event.AdapterStubResponse Maven / Gradle / Ivy

There is a newer version: 6.1.39
Show newest version
/*
 * Copyright (C) 2017 CenturyLink, Inc.
 *
 * 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.centurylink.mdw.model.event;

import org.json.JSONException;
import org.json.JSONObject;

import com.centurylink.mdw.model.Jsonable;
import com.centurylink.mdw.model.Response;

public class AdapterStubResponse extends Response implements Jsonable {

    private static final String JSON_NAME = "AdapterStubResponse";

    private int delay; // seconds
    public int getDelay() { return delay; }
    public void setDelay(int delay) { this.delay = delay; }

    private boolean passthrough;
    public boolean isPassthrough() { return passthrough; }
    public void setPassthrough(boolean passthrough) { this.passthrough = passthrough; }

    public AdapterStubResponse(String content) {
        super(content);
    }

    public AdapterStubResponse(JSONObject json) throws JSONException {
        super(json.getJSONObject(JSON_NAME));
        if (json.getJSONObject(JSON_NAME).has("delay"))
            this.delay = json.getJSONObject(JSON_NAME).getInt("delay");
        if (json.getJSONObject(JSON_NAME).has("passthrough"))
            this.passthrough = json.getJSONObject(JSON_NAME).getBoolean("passthrough");
    }

    public JSONObject getJson() throws JSONException {
        JSONObject json = create();
        JSONObject responseJson = super.getJson();
        if (delay > 0)
            responseJson.put("delay", delay);
        if (passthrough)
            responseJson.put("passthrough", passthrough);
        json.put(JSON_NAME, responseJson);
        return json;
    }

    public String getJsonName() {
        return JSON_NAME;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy