Package com.microstrategy.web.beans
Interface PromptsSource
-
- All Known Subinterfaces:
ExternalPromptsSource
,MetadataPromptsSource
public interface PromptsSource
This interface is the base interface from which two sub-interfaces are derived, the MetadaPromptsSource and ExternalPromptsSource interfaces.- Since:
- MicroStrategy Web 7.3.1 or earlier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getType()
Returns the type of the prompt source (EnumPromptsSourceTypes
).WebPrompts
getWebPrompts()
Returns all theWebPrompts
contained in this PromptsSource.
-
-
-
Method Detail
-
getType
int getType()
Returns the type of the prompt source (EnumPromptsSourceTypes
).- Returns:
- the type of the prompt source.
-
getWebPrompts
WebPrompts getWebPrompts() throws WebObjectsException
Returns all theWebPrompts
contained in this PromptsSource.- Returns:
- all the
WebPrompts
originated from this source. - Throws:
WebObjectsException
- thrown if there is a problem getting theWebPrompts
.
-
-