/* * Copyright 2017 SmartBear Software * * 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 io.swagger.inflector.examples.models; public abstract class AbstractExample implements Example { private String name = null; private String namespace = null; private String prefix = null; private Boolean attribute = false; private Boolean wrapped = false; private String wrappedName = null; private String typeName; public String getTypeName() { return typeName; } public void setTypeName(String typeName) { this.typeName = typeName; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getNamespace() { return namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getPrefix() { return prefix; } public void setPrefix(String prefix) { this.prefix = prefix; } public Boolean getAttribute() { return attribute; } public void setAttribute(Boolean attribute) { this.attribute = attribute; } public Boolean getWrapped() { return wrapped; } public void setWrapped(Boolean wrapped) { this.wrapped = wrapped; } public String getWrappedName() { return wrappedName; } public void setWrappedName(String wrappedName) { this.wrappedName = wrappedName; } }