blob: aabf588dd4976b96aed552760f7ca7bf428e28e6 [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.geronimo.microprofile.openapi.impl.model;
import java.util.Map;
import javax.enterprise.inject.Vetoed;
import javax.json.bind.annotation.JsonbTransient;
import org.eclipse.microprofile.openapi.models.Extensible;
import org.eclipse.microprofile.openapi.models.info.Contact;
@Vetoed
public class ContactImpl implements Contact {
private Extensible _extensible = new ExtensibleImpl();
private String _email;
private String _name;
private String _url;
@Override
@JsonbTransient
public Map<String, Object> getExtensions() {
return _extensible.getExtensions();
}
@Override
public void setExtensions(final Map<String, Object> extensions) {
_extensible.setExtensions(extensions);
}
@Override
public Contact addExtension(final String name, final Object value) {
_extensible.addExtension(name, value);
return this;
}
@Override
public void removeExtension(final String name) {
_extensible.removeExtension(name);
}
@Override
public String getEmail() {
return _email;
}
@Override
public void setEmail(final String _email) {
this._email = _email;
}
@Override
public Contact email(final String _email) {
setEmail(_email);
return this;
}
@Override
public String getName() {
return _name;
}
@Override
public void setName(final String _name) {
this._name = _name;
}
@Override
public Contact name(final String _name) {
setName(_name);
return this;
}
@Override
public String getUrl() {
return _url;
}
@Override
public void setUrl(final String _url) {
this._url = _url;
}
@Override
public Contact url(final String _url) {
setUrl(_url);
return this;
}
}