com.apitrary.api.common.status.Info Maven / Gradle / Ivy
/**
*
*/
package com.apitrary.api.common.status;
/*
* Copyright 2012-2013 Denis Neuling
*
* 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.
*/
import java.io.Serializable;
/**
*
* Info class.
*
*
* @author Denis Neuling ([email protected])
*
*/
public class Info implements Serializable {
private static final long serialVersionUID = 4234844873408763205L;
private String name;
private String copyright;
private String support;
private String contact;
private String version;
private String company;
/**
*
* Constructor for Info.
*
*/
public Info() {
}
/**
*
* Getter for the field name
.
*
*
* @return a {@link java.lang.String} object.
*/
public String getName() {
return name;
}
/**
*
* Setter for the field name
.
*
*
* @param name
* a {@link java.lang.String} object.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* Getter for the field copyright
.
*
*
* @return a {@link java.lang.String} object.
*/
public String getCopyright() {
return copyright;
}
/**
*
* Setter for the field copyright
.
*
*
* @param copyright
* a {@link java.lang.String} object.
*/
public void setCopyright(String copyright) {
this.copyright = copyright;
}
/**
*
* Getter for the field support
.
*
*
* @return a {@link java.lang.String} object.
*/
public String getSupport() {
return support;
}
/**
*
* Setter for the field support
.
*
*
* @param support
* a {@link java.lang.String} object.
*/
public void setSupport(String support) {
this.support = support;
}
/**
*
* Getter for the field contact
.
*
*
* @return a {@link java.lang.String} object.
*/
public String getContact() {
return contact;
}
/**
*
* Setter for the field contact
.
*
*
* @param contact
* a {@link java.lang.String} object.
*/
public void setContact(String contact) {
this.contact = contact;
}
/**
*
* Getter for the field version
.
*
*
* @return a {@link java.lang.String} object.
*/
public String getVersion() {
return version;
}
/**
*
* Setter for the field version
.
*
*
* @param version
* a {@link java.lang.String} object.
*/
public void setVersion(String version) {
this.version = version;
}
/**
*
* Getter for the field company
.
*
*
* @return a {@link java.lang.String} object.
*/
public String getCompany() {
return company;
}
/**
*
* Setter for the field company
.
*
*
* @param company
* a {@link java.lang.String} object.
*/
public void setCompany(String company) {
this.company = company;
}
/** {@inheritDoc} */
@Override
public String toString() {
return "Info [name=" + name + ", copyright=" + copyright + ", support=" + support + ", contact=" + contact + ", version=" + version + ", company=" + company + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy