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

org.opendaylight.aaa.api.model.IDMError Maven / Gradle / Ivy

There is a newer version: 0.20.1
Show newest version
/*
 * Copyright (c) 2014, 2017 Hewlett-Packard Development Company, L.P. and others.  All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */
package org.opendaylight.aaa.api.model;

import javax.ws.rs.core.Response;
import javax.xml.bind.annotation.XmlRootElement;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@XmlRootElement(name = "idmerror")
public class IDMError {
    private static final Logger LOG = LoggerFactory.getLogger(IDMError.class);

    private String message;
    private String details;
    private int code = 500;

    public IDMError() {
    }

    public IDMError(int statusCode, String msg, String msgDetails) {
        code = statusCode;
        message = msg;
        details = msgDetails;
    }

    public IDMError(int statusCode, String msg) {
        this(statusCode, msg, "");
    }

    public String getMessage() {
        return message;
    }

    public void setMessage(String msg) {
        this.message = msg;
    }

    public void setDetails(String details) {
        this.details = details;
    }

    public Response response() {
        LOG.error("error: {} details: {} status: {}", this.message, this.details, code);
        return Response.status(this.code).entity(this).build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy