blob: 108d632ea273a9e4c45375af96ccf03a2ee78817 [file] [log] [blame]
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you 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.apache.juneau.petstore.dto;
import org.apache.juneau.annotation.*;
/**
* Bean for creating {@link Order} objects.
*
* <ul class='seealso'>
* <li class='extlink'>{@source}
* </ul>
*/
@Bean(fluentSetters=true, properties="petId,username")
public class CreateOrder {
private long petId;
private String username;
/**
* Optional constructor.
*
* @param petId The <bc>petId</bc> property value.
* @param username The <bc>username</bc> property value.
*/
@Beanc(properties="petId,username")
public CreateOrder(long petId, String username) {
this.petId = petId;
this.username = username;
}
/**
* Constructor needed by JPA.
*/
public CreateOrder() {}
//-----------------------------------------------------------------------------------------------------------------
// Bean properties
//-----------------------------------------------------------------------------------------------------------------
/**
* @return The <bc>petId</bc> property value.
*/
public long getPetId() {
return petId;
}
/**
* @param value The <bc>petId</bc> property value.
* @return This object (for method chaining).
*/
public CreateOrder petId(long value) {
this.petId = value;
return this;
}
/**
* @return The <bc>username</bc> property value.
*/
public String getUsername() {
return username;
}
/**
* @param value The <bc>username</bc> property value.
* @return This object (for method chaining).
*/
public CreateOrder username(String value) {
this.username = value;
return this;
}
//-----------------------------------------------------------------------------------------------------------------
// Other
//-----------------------------------------------------------------------------------------------------------------
/**
* Used to populate Swagger examples.
* Example is inferred from the method name.
*
* @return An example POJO.
*/
public static CreateOrder example() {
return new CreateOrder(123, "sampleuser");
}
}