Package com.axway.apim.api.model
Class APISpecificationFilter
- java.lang.Object
-
- com.axway.apim.api.model.APISpecificationFilter
-
public class APISpecificationFilter extends Object
-
-
Constructor Summary
Constructors Constructor Description APISpecificationFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddExclude(String[] pathAndVerbs, String[] tags)This method is for tests onlyvoidaddExclude(String[] pathAndVerbs, String[] tags, String[] models)This method is for tests onlyvoidaddInclude(String[] pathAndVerbs, String[] tags)This method is for tests onlyvoidaddInclude(String[] pathAndVerbs, String[] tags, String[] models)This method is for tests onlyList<APISpecIncludeExcludeFilter>getExclude()List<APISpecIncludeExcludeFilter>getInclude()voidsetExclude(List<APISpecIncludeExcludeFilter> exclude)voidsetInclude(List<APISpecIncludeExcludeFilter> include)
-
-
-
Method Detail
-
getInclude
public List<APISpecIncludeExcludeFilter> getInclude()
-
setInclude
public void setInclude(List<APISpecIncludeExcludeFilter> include)
-
getExclude
public List<APISpecIncludeExcludeFilter> getExclude()
-
setExclude
public void setExclude(List<APISpecIncludeExcludeFilter> exclude)
-
addInclude
public void addInclude(String[] pathAndVerbs, String[] tags)
This method is for tests only- Parameters:
pathAndVerbs- an array of paths and verbs to includetags- an array of tags to include
-
addExclude
public void addExclude(String[] pathAndVerbs, String[] tags)
This method is for tests only- Parameters:
pathAndVerbs- an array of paths and verbs to excludetags- an array of tags to exclude
-
addInclude
public void addInclude(String[] pathAndVerbs, String[] tags, String[] models)
This method is for tests only- Parameters:
pathAndVerbs- an array of paths and verbs to includetags- an array of tags to includemodels- an array of models to include
-
-