A B C D E F G I O P R S T 

A

addCommand(String, List<String>) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
Adds a command that the recipe wants invoked.
addDeployFile(String, String) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
 
addFile(String, String) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
 
addRealizedFile(String) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
 
addReplacementVariables(Set<String>) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
 
addReplacementVariableValue(String, String) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
Adds the given name/value pair to the set of replacement variable values associated with this context.
addScript(String, List<String>) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
Adds a script that the recipe wants invoked.
assignDefaultValueToReplacementVariable(String, String) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
If a replacement varaible is known to have a default value, call this to set that default value.

B

BundleRecipeCommand - Class in org.rhq.bundle.filetemplate.recipe
 
BundleRecipeCommand() - Constructor for class org.rhq.bundle.filetemplate.recipe.BundleRecipeCommand
 

C

CommandRecipeCommand - Class in org.rhq.bundle.filetemplate.recipe
Declares that an existing script or shell command is to be invoked.
CommandRecipeCommand() - Constructor for class org.rhq.bundle.filetemplate.recipe.CommandRecipeCommand
 
ConfigDefRecipeCommand - Class in org.rhq.bundle.filetemplate.recipe
 
ConfigDefRecipeCommand() - Constructor for class org.rhq.bundle.filetemplate.recipe.ConfigDefRecipeCommand
 
createRecipeCommands() - Method in class org.rhq.bundle.filetemplate.recipe.RecipeParser
 

D

DeployRecipeCommand - Class in org.rhq.bundle.filetemplate.recipe
 
DeployRecipeCommand() - Constructor for class org.rhq.bundle.filetemplate.recipe.DeployRecipeCommand
 

E

extractArguments(String[]) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeParser
 

F

FileRecipeCommand - Class in org.rhq.bundle.filetemplate.recipe
 
FileRecipeCommand() - Constructor for class org.rhq.bundle.filetemplate.recipe.FileRecipeCommand
 

G

getDeployFiles() - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
Returns all the files that are to be deployed.
getDeploymentProperties() - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
Returns the deployment properties as defined in the recipe.
getFiles() - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
Returns all the files that are strictly to be copied to some location.
getName() - Method in class org.rhq.bundle.filetemplate.recipe.BundleRecipeCommand
 
getName() - Method in class org.rhq.bundle.filetemplate.recipe.CommandRecipeCommand
 
getName() - Method in class org.rhq.bundle.filetemplate.recipe.ConfigDefRecipeCommand
 
getName() - Method in class org.rhq.bundle.filetemplate.recipe.DeployRecipeCommand
 
getName() - Method in class org.rhq.bundle.filetemplate.recipe.FileRecipeCommand
 
getName() - Method in class org.rhq.bundle.filetemplate.recipe.RealizeRecipeCommand
 
getName() - Method in interface org.rhq.bundle.filetemplate.recipe.RecipeCommand
The name of the recipe command.
getName() - Method in class org.rhq.bundle.filetemplate.recipe.ScriptRecipeCommand
 
getParser() - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
If this context is currently in use by a parser, this will be the reference to that parser.
getRealizedFiles() - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
Returns the pathnames of all files that are to be realized (meaning, those that should have replacement variables replaced).
getRecipe() - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
The full recipe that this context represents.
getReplacementVariableDefaultValues() - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
Returns a map keyed on replacement variables whose values are the default values for the replacement variables.
getReplacementVariables() - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
The names of all replacement variables that are found in the recipe.
getReplacementVariables(String) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeParser
 
getReplacementVariableValues() - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
If known, the returned value will contain values that are to be used to replace replacement variables found in the recipe.
getScriptFiles() - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
Returns a set of all the names of scripts found in the recipe.

I

isReplaceReplacementVariables() - Method in class org.rhq.bundle.filetemplate.recipe.RecipeParser
If the parser should replace replacement variables with their corresponding values (as found in the parser context), true is returned.
isUnknownRecipe() - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
Returns true if the recipe content does not look like a valid type that can be at least attempted to be parsed.

O

org.rhq.bundle.filetemplate.recipe - package org.rhq.bundle.filetemplate.recipe
 

P

parse(RecipeParser, RecipeContext, String[]) - Method in class org.rhq.bundle.filetemplate.recipe.BundleRecipeCommand
 
parse(RecipeParser, RecipeContext, String[]) - Method in class org.rhq.bundle.filetemplate.recipe.CommandRecipeCommand
 
parse(RecipeParser, RecipeContext, String[]) - Method in class org.rhq.bundle.filetemplate.recipe.ConfigDefRecipeCommand
 
parse(RecipeParser, RecipeContext, String[]) - Method in class org.rhq.bundle.filetemplate.recipe.DeployRecipeCommand
 
parse(RecipeParser, RecipeContext, String[]) - Method in class org.rhq.bundle.filetemplate.recipe.FileRecipeCommand
 
parse(RecipeParser, RecipeContext, String[]) - Method in class org.rhq.bundle.filetemplate.recipe.RealizeRecipeCommand
 
parse(RecipeParser, RecipeContext, String[]) - Method in interface org.rhq.bundle.filetemplate.recipe.RecipeCommand
Parses this recipe command and optionally puts information in the context.
parse(RecipeParser, RecipeContext, String[]) - Method in class org.rhq.bundle.filetemplate.recipe.ScriptRecipeCommand
 
parseRecipe(RecipeContext) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeParser
 
parseRecipeCommandLine(RecipeContext, String) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeParser
 

R

RealizeRecipeCommand - Class in org.rhq.bundle.filetemplate.recipe
 
RealizeRecipeCommand() - Constructor for class org.rhq.bundle.filetemplate.recipe.RealizeRecipeCommand
 
RecipeCommand - Interface in org.rhq.bundle.filetemplate.recipe
 
RecipeContext - Class in org.rhq.bundle.filetemplate.recipe
Contains information that is gleened from a recipe during and after it is parsed.
RecipeContext(String) - Constructor for class org.rhq.bundle.filetemplate.recipe.RecipeContext
 
RecipeParser - Class in org.rhq.bundle.filetemplate.recipe
Parses the file template recipe.
RecipeParser() - Constructor for class org.rhq.bundle.filetemplate.recipe.RecipeParser
 
replaceReplacementVariables(RecipeContext, String) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeParser
 

S

ScriptRecipeCommand - Class in org.rhq.bundle.filetemplate.recipe
 
ScriptRecipeCommand() - Constructor for class org.rhq.bundle.filetemplate.recipe.ScriptRecipeCommand
 
setParser(RecipeParser) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
 
setReplacementVariableValues(Configuration) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
 
setReplaceReplacementVariables(boolean) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeParser
 
setUnknownRecipe(boolean) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
 
splitCommandLine(String) - Method in class org.rhq.bundle.filetemplate.recipe.RecipeParser
 

T

toString() - Method in class org.rhq.bundle.filetemplate.recipe.RecipeContext
 
A B C D E F G I O P R S T 

Copyright © 2008-2014 Red Hat, Inc.. All Rights Reserved.