![JAR search and dependency download from the Maven repository](/logo.png)
com.centurylink.mdw.model.message.JmsMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mdw-common Show documentation
Show all versions of mdw-common Show documentation
MDW is a microservices based workflow framework
/*
* 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.message;
import java.io.Serializable;
import org.json.JSONException;
import org.json.JSONObject;
import com.centurylink.mdw.model.Jsonable;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@ApiModel(value="JmsMessage", description="Jms Message")
public class JmsMessage implements Serializable, Jsonable {
public JmsMessage() {}
private String user;
@ApiModelProperty(value="cuid of authenticated user", required=true)
private String endPoint = "";
@ApiModelProperty(value="endPoint", required=true)
public String getEndpoint() { return endPoint; }
public void setEndpoint(String endPoint) { this.endPoint = endPoint; }
private String queueName;
public String getQueueName() { return queueName; }
public void setQueueName(String queueName) { this.queueName = queueName; }
private String requestMessage;
public String getRequestMessage() { return requestMessage; }
public void setRequestMessage(String message) { this.requestMessage = message; }
private Integer timeOut = new Integer(10); //seconds
public Integer getTimeout() { return timeOut; }
public void setTimeout(Integer timeOut) { this.timeOut = timeOut; }
private String response;
public String getResponse() { return response; }
public void setResponse(String response) { this.response = response; }
private int statusCode;
@ApiModelProperty(hidden=true)
public void setStatusCode(int statusCode) {
this.statusCode = statusCode;
}
public int getStatusCode() { return statusCode; }
private int responseTime; // ms
public void setResponseTime(int responseTime) {
this.responseTime = responseTime;
}
public int getResponseTime() { return responseTime; }
public JmsMessage(JSONObject json) throws JSONException {
if (json.has("endPoint"))
endPoint = json.getString("endPoint");
if (json.has("timeOut"))
timeOut = json.getInt("timeOut");
if (json.has("user"))
user = json.getString("user");
if (json.has("queueName"))
queueName = json.getString("queueName");
if (json.has("requestMessage"))
requestMessage = json.getString("requestMessage");
}
public String getJsonName() { return "RequestMessage"; }
public JSONObject getJson() throws JSONException {
JSONObject json = create();
json.put("responseTime", getResponseTime());
json.put("response", getResponse());
json.put("statusCode", getStatusCode());
return json;
}
public String getUser() { return user; }
public void setUser(String user) { this.user = user; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy