com.wadpam.docrest.domain.Resource Maven / Gradle / Ivy
The newest version!
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.wadpam.docrest.domain;
import com.sun.javadoc.ClassDoc;
import java.util.Collection;
import java.util.Comparator;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
import java.util.TreeSet;
/**
*
* @author os
*/
public class Resource {
private String paths[];
private String entityType;
private String simpleType;
private ClassDoc classDoc;
private Map> operationsMap = new TreeMap>();
private final Set methods = new TreeSet();
private int count;
public ClassDoc getClassDoc() {
return classDoc;
}
public void setClassDoc(ClassDoc classDoc) {
this.classDoc = classDoc;
}
public Set getMethods() {
return methods;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public String[] getPaths() {
return paths;
}
public void setPaths(String paths[]) {
this.paths = paths;
}
public String getEntityType() {
return entityType;
}
public void setEntityType(String entityType) {
this.entityType = entityType;
}
public String getSimpleType() {
return simpleType;
}
public void setSimpleType(String simpleType) {
this.simpleType = simpleType;
}
public Map> getOperationsMap() {
return operationsMap;
}
public void setOperationsMap(Map> operationsMap) {
this.operationsMap = operationsMap;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy