Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) [2018-2023] Payara Foundation and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://github.com/payara/Payara/blob/master/LICENSE.txt
* See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at glassfish/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* The Payara Foundation designates this particular file as subject to the "Classpath"
* exception as provided by the Payara Foundation in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package fish.payara.microprofile.openapi.impl.model.info;
import fish.payara.microprofile.openapi.impl.model.ExtensibleImpl;
import static fish.payara.microprofile.openapi.impl.model.util.ModelUtils.mergeProperty;
import org.eclipse.microprofile.openapi.models.info.Contact;
import org.eclipse.microprofile.openapi.models.info.Info;
import org.eclipse.microprofile.openapi.models.info.License;
import org.glassfish.hk2.classmodel.reflect.AnnotationModel;
public class InfoImpl extends ExtensibleImpl implements Info {
private String title;
private String description;
private String termsOfService;
private Contact contact;
private License license;
private String version;
public static Info createInstance(AnnotationModel annotation) {
Info from = new InfoImpl();
from.setTitle(annotation.getValue("title", String.class));
from.setDescription(annotation.getValue("description", String.class));
from.setExtensions(parseExtensions(annotation));
from.setTermsOfService(annotation.getValue("termsOfService", String.class));
AnnotationModel contact = annotation.getValue("contact", AnnotationModel.class);
if (contact != null) {
from.setContact(ContactImpl.createInstance(contact));
}
AnnotationModel license = annotation.getValue("license", AnnotationModel.class);
if (license != null) {
from.setLicense(LicenseImpl.createInstance(license));
}
from.setVersion(annotation.getValue("version", String.class));
return from;
}
@Override
public String getTitle() {
return title;
}
@Override
public void setTitle(String title) {
this.title = title;
}
@Override
public String getDescription() {
return description;
}
@Override
public void setDescription(String description) {
this.description = description;
}
@Override
public String getTermsOfService() {
return termsOfService;
}
@Override
public void setTermsOfService(String termsOfService) {
this.termsOfService = termsOfService;
}
@Override
public Contact getContact() {
return contact;
}
@Override
public void setContact(Contact contact) {
this.contact = contact;
}
@Override
public License getLicense() {
return license;
}
@Override
public void setLicense(License license) {
this.license = license;
}
@Override
public String getVersion() {
return version;
}
@Override
public void setVersion(String version) {
this.version = version;
}
public static void merge(Info from, Info to, boolean override) {
if (from == null) {
return;
}
to.setTitle(mergeProperty(to.getTitle(), from.getTitle(), override));
to.setVersion(mergeProperty(to.getVersion(), from.getVersion(), override));
to.setDescription(mergeProperty(to.getDescription(), from.getDescription(), override));
to.setExtensions(mergeProperty(to.getExtensions(), from.getExtensions(), override));
to.setTermsOfService(mergeProperty(to.getTermsOfService(), from.getTermsOfService(), override));
if (from.getLicense() != null) {
if (to.getLicense() == null) {
to.setLicense(new LicenseImpl());
}
LicenseImpl.merge(from.getLicense(), to.getLicense(), override);
}
if (from.getContact() != null) {
if (to.getContact() == null) {
to.setContact(new ContactImpl());
}
ContactImpl.merge(from.getContact(), to.getContact(), override);
}
}
}