Package com.qfs.webservices
Class DimensionDiscovery
- java.lang.Object
-
- com.qfs.webservices.DimensionDiscovery
-
- All Implemented Interfaces:
Serializable
public class DimensionDiscovery extends Object implements Serializable
Dimension Discovery for SOAP webservices.- Author:
- ActiveViam
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DimensionDiscovery()DimensionDiscovery(String name, String type, String defaultHierarchy, boolean visible, String[] measureGroups, List<HierarchyDiscovery> hierarchies)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetDefaultHierarchy()The default hierarchy of the dimension.List<HierarchyDiscovery>getHierarchies()The hierarchies of the dimension.String[]getMeasureGroups()The measure groups of the dimension.StringgetName()The name of the dimension.StringgetType()The type of the dimension.inthashCode()booleanisVisible()The visibility of the dimension.voidsetDefaultHierarchy(String defaultHierarchy)The default hierarchy of the dimension.voidsetHierarchies(List<HierarchyDiscovery> hierarchies)The hierarchies of the dimension.voidsetMeasureGroups(String[] measureGroups)The measure groups of the dimension.voidsetName(String name)The name of the dimension.voidsetType(String type)The type of the dimension.voidsetVisible(boolean visible)The visibility of the dimension.StringtoString()
-
-
-
Method Detail
-
getName
public String getName()
The name of the dimension.
-
getType
public String getType()
The type of the dimension.
-
getDefaultHierarchy
public String getDefaultHierarchy()
The default hierarchy of the dimension.
-
isVisible
public boolean isVisible()
The visibility of the dimension.
-
getMeasureGroups
public String[] getMeasureGroups()
The measure groups of the dimension.
-
getHierarchies
public List<HierarchyDiscovery> getHierarchies()
The hierarchies of the dimension.
-
setName
public void setName(String name)
The name of the dimension.
-
setType
public void setType(String type)
The type of the dimension.
-
setDefaultHierarchy
public void setDefaultHierarchy(String defaultHierarchy)
The default hierarchy of the dimension.
-
setVisible
public void setVisible(boolean visible)
The visibility of the dimension.
-
setMeasureGroups
public void setMeasureGroups(String[] measureGroups)
The measure groups of the dimension.
-
setHierarchies
public void setHierarchies(List<HierarchyDiscovery> hierarchies)
The hierarchies of the dimension.
-
-