
com.cuubez.visualizer.domain.configuration.Group Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cuubez-api-visualizer Show documentation
Show all versions of cuubez-api-visualizer Show documentation
Cuubez API Visualization Framework is complete implementation for describing and visualizing RESTful web services.
The newest version!
/**
* Copyright [2013] [www.cuubez.com]
* 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 com.cuubez.visualizer.domain.configuration;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import java.util.List;
public class Group {
private String name;
private String title;
private List resources;
@XStreamAlias("http-codes")
private List httpCodes;
public Group(String name, String title) {
this.name = name;
this.title = title;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public List getResources() {
return resources;
}
public void setResources(List resources) {
this.resources = resources;
}
public List getHttpCodes() {
return httpCodes;
}
public void setHttpCodes(List httpCodes) {
this.httpCodes = httpCodes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy