springfox.petstore.model.Order Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springfox-petstore Show documentation
Show all versions of springfox-petstore Show documentation
JSON API documentation for spring based applications
/*
*
* Copyright 2015 the original author or 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 springfox.petstore.model;
import io.swagger.annotations.ApiModelProperty;
import springfox.petstore.repository.Identifiable;
import java.util.Date;
public class Order implements Identifiable {
private long id;
private long petId;
private int quantity;
private Date shipDate;
private String status;
private boolean complete;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public boolean isComplete() {
return complete;
}
public void setComplete(boolean complete) {
this.complete = complete;
}
public long getPetId() {
return petId;
}
public void setPetId(long petId) {
this.petId = petId;
}
public int getQuantity() {
return quantity;
}
public void setQuantity(int quantity) {
this.quantity = quantity;
}
@ApiModelProperty(value = "Order Status", allowableValues = "placed, approved, delivered")
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public Date getShipDate() {
return shipDate;
}
public void setShipDate(Date shipDate) {
this.shipDate = shipDate;
}
@Override
public Long getIdentifier() {
return id;
}
}