org.openksavi.sponge.restapi.model.RestActionResultMeta Maven / Gradle / Ivy
/*
* Copyright 2016-2018 The Sponge authors.
*
* 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 org.openksavi.sponge.restapi.model;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@ApiModel(value = "ActionResultMeta", description = "Represents a Sponge action result metadata")
public class RestActionResultMeta {
private String type;
private String subtype;
private String displayName;
private String description;
public RestActionResultMeta() {
//
}
public RestActionResultMeta(String type, String subtype, String displayName) {
this.type = type;
this.subtype = subtype;
this.displayName = displayName;
}
@ApiModelProperty(value = "The action result type", required = true)
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
@ApiModelProperty(value = "The action result subtype", required = false)
public String getSubtype() {
return subtype;
}
public void setSubtype(String subtype) {
this.subtype = subtype;
}
@ApiModelProperty(value = "The action result display name", required = true)
public String getDisplayName() {
return displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
@ApiModelProperty(value = "The action result description", required = false)
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy