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

org.apache.juneau.dto.swagger.Contact Maven / Gradle / Ivy

// ***************************************************************************************************************************
// * 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.dto.swagger;

import static org.apache.juneau.common.internal.StringUtils.*;
import static org.apache.juneau.internal.CollectionUtils.*;
import static org.apache.juneau.internal.ConverterUtils.*;

import java.net.*;
import java.util.*;

import org.apache.juneau.annotation.*;
import org.apache.juneau.internal.*;

/**
 * Contact information for the exposed API.
 *
 * 
Example:
*

* // Construct using SwaggerBuilder. * Contact contact = contact("API Support", "http://www.swagger.io/support", "[email protected]"); * * // Serialize using JsonSerializer. * String json = JsonSerializer.DEFAULT.toString(contact); * * // Or just use toString() which does the same as above. * json = contact.toString(); *

*

* // Output * { * "name": "API Support", * "url": "http://www.swagger.io/support", * "email": "[email protected]" * } *

* *
See Also:
*/ @Bean(properties="name,url,email,*") @FluentSetters public class Contact extends SwaggerElement { private String name; private URI url; private String email; /** * Default constructor. */ public Contact() {} /** * Copy constructor. * * @param copyFrom The object to copy. */ public Contact(Contact copyFrom) { super(copyFrom); this.email = copyFrom.email; this.name = copyFrom.name; this.url = copyFrom.url; } /** * Make a deep copy of this object. * * @return A deep copy of this object. */ public Contact copy() { return new Contact(this); } //----------------------------------------------------------------------------------------------------------------- // Properties //----------------------------------------------------------------------------------------------------------------- /** * Bean property getter: email. * *

* The email address of the contact person/organization. * * @return The property value, or null if it is not set. */ public String getEmail() { return email; } /** * Bean property setter: email. * *

* The email address of the contact person/organization. * * @param value * The new value for this property. *
MUST be in the format of an email address. *
Can be null to unset the property. * @return This object. */ public Contact setEmail(String value) { email = value; return this; } /** * Bean property getter: name. * *

* The identifying name of the contact person/organization. * * @return The property value, or null if it is not set. */ public String getName() { return name; } /** * Bean property setter: name. * *

* The identifying name of the contact person/organization. * * @param value * The new value for this property. *
Can be null to unset the property. * @return This object. */ public Contact setName(String value) { name = value; return this; } /** * Bean property getter: url. * *

* The URL pointing to the contact information. * * @return The property value, or null if it is not set. */ public URI getUrl() { return url; } /** * Bean property setter: url. * *

* The URL pointing to the contact information. * * @param value * The new value for this property. *
Can be null to unset the property. * @return This object. */ public Contact setUrl(URI value) { url = value; return this; } // // @Override /* SwaggerElement */ public T get(String property, Class type) { if (property == null) return null; switch (property) { case "email": return toType(getEmail(), type); case "name": return toType(getName(), type); case "url": return toType(getUrl(), type); default: return super.get(property, type); } } @Override /* SwaggerElement */ public Contact set(String property, Object value) { if (property == null) return this; switch (property) { case "email": return setEmail(stringify(value)); case "name": return setName(stringify(value)); case "url": return setUrl(toURI(value)); default: super.set(property, value); return this; } } @Override /* SwaggerElement */ public Set keySet() { Set s = setBuilder(String.class) .addIf(email != null, "email") .addIf(name != null, "name") .addIf(url != null, "url") .build(); return new MultiSet<>(s, super.keySet()); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy