repo
stringlengths
7
58
path
stringlengths
12
218
func_name
stringlengths
3
140
original_string
stringlengths
73
34.1k
language
stringclasses
1 value
code
stringlengths
73
34.1k
code_tokens
list
docstring
stringlengths
3
16k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
105
339
partition
stringclasses
1 value
CloudSlang/cs-actions
cs-xml/src/main/java/io/cloudslang/content/xml/actions/Validate.java
Validate.execute
@Action(name = "Validate", outputs = { @Output(RETURN_CODE), @Output(RESULT_TEXT), @Output(RETURN_RESULT), @Output(ERROR_MESSAGE)}, responses = { @Response(text = ResponseNames.SUCCESS, field = RE...
java
@Action(name = "Validate", outputs = { @Output(RETURN_CODE), @Output(RESULT_TEXT), @Output(RETURN_RESULT), @Output(ERROR_MESSAGE)}, responses = { @Response(text = ResponseNames.SUCCESS, field = RE...
[ "@", "Action", "(", "name", "=", "\"Validate\"", ",", "outputs", "=", "{", "@", "Output", "(", "RETURN_CODE", ")", ",", "@", "Output", "(", "RESULT_TEXT", ")", ",", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", "ERROR_MESSAGE", ")"...
Service to validate an XML document. Input must be given for either "xmlDocument" or for "xmlLocation". The "'xsdLocation" input is optional, but if specified then the XML document will be validated against the XSD schema. @param xmlDocument XML string to test @param xmlDocumentSource The source type of th...
[ "Service", "to", "validate", "an", "XML", "document", ".", "Input", "must", "be", "given", "for", "either", "xmlDocument", "or", "for", "xmlLocation", ".", "The", "xsdLocation", "input", "is", "optional", "but", "if", "specified", "then", "the", "XML", "docu...
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-xml/src/main/java/io/cloudslang/content/xml/actions/Validate.java#L94-L146
train
CloudSlang/cs-actions
cs-xml/src/main/java/io/cloudslang/content/xml/actions/Remove.java
Remove.execute
@Action(name = "Remove", outputs = { @Output(RETURN_CODE), @Output(RETURN_RESULT), @Output(RESULT_XML), @Output(ERROR_MESSAGE)}, responses = { @Response(text = ResponseNames.SUCCESS, field = RETUR...
java
@Action(name = "Remove", outputs = { @Output(RETURN_CODE), @Output(RETURN_RESULT), @Output(RESULT_XML), @Output(ERROR_MESSAGE)}, responses = { @Response(text = ResponseNames.SUCCESS, field = RETUR...
[ "@", "Action", "(", "name", "=", "\"Remove\"", ",", "outputs", "=", "{", "@", "Output", "(", "RETURN_CODE", ")", ",", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", "RESULT_XML", ")", ",", "@", "Output", "(", "ERROR_MESSAGE", ")", ...
Removes an element or attribute from an XML document. @param xmlDocument XML string to remove element or attribute from @param xmlDocumentSource The source type of the xml document. Valid values: xmlString, xmlPath Default value: xmlString @param xPathQuery XPATH query that results in an element or elemen...
[ "Removes", "an", "element", "or", "attribute", "from", "an", "XML", "document", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-xml/src/main/java/io/cloudslang/content/xml/actions/Remove.java#L45-L79
train
CloudSlang/cs-actions
cs-powershell/src/main/java/io/cloudslang/content/utils/ResourceLoader.java
ResourceLoader.loadAsString
public static String loadAsString(String resourceFileName) throws IOException, URISyntaxException { try (InputStream is = ResourceLoader.class.getClassLoader().getResourceAsStream(resourceFileName)) { StringWriter stringWriter = new StringWriter(); IOUtils.copy(is, stringWriter, Standard...
java
public static String loadAsString(String resourceFileName) throws IOException, URISyntaxException { try (InputStream is = ResourceLoader.class.getClassLoader().getResourceAsStream(resourceFileName)) { StringWriter stringWriter = new StringWriter(); IOUtils.copy(is, stringWriter, Standard...
[ "public", "static", "String", "loadAsString", "(", "String", "resourceFileName", ")", "throws", "IOException", ",", "URISyntaxException", "{", "try", "(", "InputStream", "is", "=", "ResourceLoader", ".", "class", ".", "getClassLoader", "(", ")", ".", "getResourceA...
Loads the contents of a project resource file in a string. @param resourceFileName The name of the resource file. @return A string value representing the entire content of the resource. @throws IOException @throws URISyntaxException
[ "Loads", "the", "contents", "of", "a", "project", "resource", "file", "in", "a", "string", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-powershell/src/main/java/io/cloudslang/content/utils/ResourceLoader.java#L44-L50
train
CloudSlang/cs-actions
cs-lists/src/main/java/io/cloudslang/content/actions/ListItemGrabberAction.java
ListItemGrabberAction.grabItemFromList
@Action(name = "List Item Grabber", outputs = { @Output(RESULT_TEXT), @Output(RESPONSE), @Output(RETURN_RESULT), @Output(RETURN_CODE) }, responses = { @Response(text = SUCCESS, field =...
java
@Action(name = "List Item Grabber", outputs = { @Output(RESULT_TEXT), @Output(RESPONSE), @Output(RETURN_RESULT), @Output(RETURN_CODE) }, responses = { @Response(text = SUCCESS, field =...
[ "@", "Action", "(", "name", "=", "\"List Item Grabber\"", ",", "outputs", "=", "{", "@", "Output", "(", "RESULT_TEXT", ")", ",", "@", "Output", "(", "RESPONSE", ")", ",", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", "RETURN_CODE", ...
This operation is used to retrieve a value from a list. When the index of an element from a list is known, this operation can be used to extract the element. @param list The list to get the value from. @param delimiter The delimiter that separates values in the list. @param index The index of the value (start...
[ "This", "operation", "is", "used", "to", "retrieve", "a", "value", "from", "a", "list", ".", "When", "the", "index", "of", "an", "element", "from", "a", "list", "is", "known", "this", "operation", "can", "be", "used", "to", "extract", "the", "element", ...
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-lists/src/main/java/io/cloudslang/content/actions/ListItemGrabberAction.java#L60-L96
train
CloudSlang/cs-actions
cs-utilities/src/main/java/io/cloudslang/content/utilities/actions/DefaultIfEmpty.java
DefaultIfEmpty.execute
@Action(name = "Default if empty", description = OPERATION_DESC, outputs = { @Output(value = RETURN_CODE, description = RETURN_CODE_DESC), @Output(value = RETURN_RESULT, description = RETURN_RESULT_DESC), @Output(value = EXCEPTION, desc...
java
@Action(name = "Default if empty", description = OPERATION_DESC, outputs = { @Output(value = RETURN_CODE, description = RETURN_CODE_DESC), @Output(value = RETURN_RESULT, description = RETURN_RESULT_DESC), @Output(value = EXCEPTION, desc...
[ "@", "Action", "(", "name", "=", "\"Default if empty\"", ",", "description", "=", "OPERATION_DESC", ",", "outputs", "=", "{", "@", "Output", "(", "value", "=", "RETURN_CODE", ",", "description", "=", "RETURN_CODE_DESC", ")", ",", "@", "Output", "(", "value",...
This operation checks if a string is blank or empty and if it's true a default value will be assigned instead of the initial string. @param initialValue The initial string. @param defaultValue The default value used to replace the initial string. @param trim A variable used to check if the initial string is bl...
[ "This", "operation", "checks", "if", "a", "string", "is", "blank", "or", "empty", "and", "if", "it", "s", "true", "a", "default", "value", "will", "be", "assigned", "instead", "of", "the", "initial", "string", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-utilities/src/main/java/io/cloudslang/content/utilities/actions/DefaultIfEmpty.java#L66-L92
train
CloudSlang/cs-actions
cs-mail/src/main/java/io/cloudslang/content/mail/services/SendMail.java
SendMail.validateDelimiters
protected void validateDelimiters(String rowDelimiter, String columnDelimiter) throws Exception { if (rowDelimiter.equals(columnDelimiter)) { throw new Exception(INVALID_DELIMITERS); } if (StringUtils.contains(columnDelimiter, rowDelimiter)) { throw new Exception(INVALID_...
java
protected void validateDelimiters(String rowDelimiter, String columnDelimiter) throws Exception { if (rowDelimiter.equals(columnDelimiter)) { throw new Exception(INVALID_DELIMITERS); } if (StringUtils.contains(columnDelimiter, rowDelimiter)) { throw new Exception(INVALID_...
[ "protected", "void", "validateDelimiters", "(", "String", "rowDelimiter", ",", "String", "columnDelimiter", ")", "throws", "Exception", "{", "if", "(", "rowDelimiter", ".", "equals", "(", "columnDelimiter", ")", ")", "{", "throw", "new", "Exception", "(", "INVAL...
This method checks if the delimiters are equal and if the row delimiter is a substring of the column delimiter and throws an exception with the appropriate message. @param rowDelimiter @param columnDelimiter @throws Exception
[ "This", "method", "checks", "if", "the", "delimiters", "are", "equal", "and", "if", "the", "row", "delimiter", "is", "a", "substring", "of", "the", "column", "delimiter", "and", "throws", "an", "exception", "with", "the", "appropriate", "message", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-mail/src/main/java/io/cloudslang/content/mail/services/SendMail.java#L460-L467
train
CloudSlang/cs-actions
cs-mail/src/main/java/io/cloudslang/content/mail/services/SendMail.java
SendMail.extractHeaderNamesAndValues
protected Object[] extractHeaderNamesAndValues(String headersMap, String rowDelimiter, String columnDelimiter) throws Exception { String[] rows = headersMap.split(Pattern.quote(rowDelimiter)); ArrayList<String> headerNames = new ArrayList<>(); ArrayList<String> headerValues = new Arr...
java
protected Object[] extractHeaderNamesAndValues(String headersMap, String rowDelimiter, String columnDelimiter) throws Exception { String[] rows = headersMap.split(Pattern.quote(rowDelimiter)); ArrayList<String> headerNames = new ArrayList<>(); ArrayList<String> headerValues = new Arr...
[ "protected", "Object", "[", "]", "extractHeaderNamesAndValues", "(", "String", "headersMap", ",", "String", "rowDelimiter", ",", "String", "columnDelimiter", ")", "throws", "Exception", "{", "String", "[", "]", "rows", "=", "headersMap", ".", "split", "(", "Patt...
This method extracts and returns an object containing two Lists. A list with the header names and a list with the header values. Values found on same position in the two lists correspond to each other. @param headersMap @param rowDelimiter @param columnDelimiter @return @throws Exception
[ "This", "method", "extracts", "and", "returns", "an", "object", "containing", "two", "Lists", ".", "A", "list", "with", "the", "header", "names", "and", "a", "list", "with", "the", "header", "values", ".", "Values", "found", "on", "same", "position", "in",...
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-mail/src/main/java/io/cloudslang/content/mail/services/SendMail.java#L478-L495
train
CloudSlang/cs-actions
cs-mail/src/main/java/io/cloudslang/content/mail/services/SendMail.java
SendMail.validateRow
protected boolean validateRow(String row, String columnDelimiter, int rowNumber) throws Exception { if (row.contains(columnDelimiter)) { if (row.equals(columnDelimiter)) { throw new Exception(format(ROW_WITH_EMPTY_HEADERS_INPUT, rowNumber + 1)); } else { S...
java
protected boolean validateRow(String row, String columnDelimiter, int rowNumber) throws Exception { if (row.contains(columnDelimiter)) { if (row.equals(columnDelimiter)) { throw new Exception(format(ROW_WITH_EMPTY_HEADERS_INPUT, rowNumber + 1)); } else { S...
[ "protected", "boolean", "validateRow", "(", "String", "row", ",", "String", "columnDelimiter", ",", "int", "rowNumber", ")", "throws", "Exception", "{", "if", "(", "row", ".", "contains", "(", "columnDelimiter", ")", ")", "{", "if", "(", "row", ".", "equal...
This method validates a row contained in the 'headers' input of the operation. @param row The value of the row to be validated. @param columnDelimiter The delimiter that separates the header name from the header value. @param rowNumber The row number inside the 'headers' input. @return This method returns true if the r...
[ "This", "method", "validates", "a", "row", "contained", "in", "the", "headers", "input", "of", "the", "operation", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-mail/src/main/java/io/cloudslang/content/mail/services/SendMail.java#L505-L524
train
CloudSlang/cs-actions
cs-mail/src/main/java/io/cloudslang/content/mail/services/SendMail.java
SendMail.addHeadersToSMTPMessage
protected SMTPMessage addHeadersToSMTPMessage(SMTPMessage message, List<String> headerNames, List<String> headerValues) throws MessagingException { SMTPMessage msg = new SMTPMessage(message); Iterator namesIter = headerNames.iterator(); Iterator ...
java
protected SMTPMessage addHeadersToSMTPMessage(SMTPMessage message, List<String> headerNames, List<String> headerValues) throws MessagingException { SMTPMessage msg = new SMTPMessage(message); Iterator namesIter = headerNames.iterator(); Iterator ...
[ "protected", "SMTPMessage", "addHeadersToSMTPMessage", "(", "SMTPMessage", "message", ",", "List", "<", "String", ">", "headerNames", ",", "List", "<", "String", ">", "headerValues", ")", "throws", "MessagingException", "{", "SMTPMessage", "msg", "=", "new", "SMTP...
The method creates a copy of the SMTPMessage object passed through the arguments list and adds the headers to the copied object then returns it. If the header is already present in the message then its values list will be updated with the given header value. @param message The SMTPMessage object to which the headers ar...
[ "The", "method", "creates", "a", "copy", "of", "the", "SMTPMessage", "object", "passed", "through", "the", "arguments", "list", "and", "adds", "the", "headers", "to", "the", "copied", "object", "then", "returns", "it", ".", "If", "the", "header", "is", "al...
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-mail/src/main/java/io/cloudslang/content/mail/services/SendMail.java#L536-L552
train
CloudSlang/cs-actions
cs-commons/src/main/java/io/cloudslang/content/utils/BooleanUtilities.java
BooleanUtilities.getLowerCaseString
@NotNull private static String getLowerCaseString(@NotNull final String string) { return StringUtils.strip(string).toLowerCase(); }
java
@NotNull private static String getLowerCaseString(@NotNull final String string) { return StringUtils.strip(string).toLowerCase(); }
[ "@", "NotNull", "private", "static", "String", "getLowerCaseString", "(", "@", "NotNull", "final", "String", "string", ")", "{", "return", "StringUtils", ".", "strip", "(", "string", ")", ".", "toLowerCase", "(", ")", ";", "}" ]
Given a string, it lowercase it and strips the blank spaces from the ends @param string the string to check @return the string in lowercase
[ "Given", "a", "string", "it", "lowercase", "it", "and", "strips", "the", "blank", "spaces", "from", "the", "ends" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-commons/src/main/java/io/cloudslang/content/utils/BooleanUtilities.java#L42-L45
train
CloudSlang/cs-actions
cs-lists/src/main/java/io/cloudslang/content/actions/ListContainsAction.java
ListContainsAction.containsElement
@Action(name = "List Contains All", outputs = { @Output(RESPONSE_TEXT), @Output(RETURN_RESULT), @Output(RETURN_CODE), @Output(EXCEPTION) }, responses = { @Response(text = SUCCESS, fiel...
java
@Action(name = "List Contains All", outputs = { @Output(RESPONSE_TEXT), @Output(RETURN_RESULT), @Output(RETURN_CODE), @Output(EXCEPTION) }, responses = { @Response(text = SUCCESS, fiel...
[ "@", "Action", "(", "name", "=", "\"List Contains All\"", ",", "outputs", "=", "{", "@", "Output", "(", "RESPONSE_TEXT", ")", ",", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", "RETURN_CODE", ")", ",", "@", "Output", "(", "EXCEPTION"...
This method checks to see if a list contains every element in another list. @param sublist The contained list. @param container The containing list. @param delimiter A delimiter separating elements in the two lists. Default is a comma. @param ignoreCase If set to 'True' then the compare is not case sensit...
[ "This", "method", "checks", "to", "see", "if", "a", "list", "contains", "every", "element", "in", "another", "list", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-lists/src/main/java/io/cloudslang/content/actions/ListContainsAction.java#L66-L108
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/services/SQLQueryAllRowsService.java
SQLQueryAllRowsService.execQueryAllRows
public static String execQueryAllRows(@NotNull final SQLInputs sqlInputs) throws Exception { ConnectionService connectionService = new ConnectionService(); try (final Connection connection = connectionService.setUpConnection(sqlInputs)) { connection.setReadOnly(true); State...
java
public static String execQueryAllRows(@NotNull final SQLInputs sqlInputs) throws Exception { ConnectionService connectionService = new ConnectionService(); try (final Connection connection = connectionService.setUpConnection(sqlInputs)) { connection.setReadOnly(true); State...
[ "public", "static", "String", "execQueryAllRows", "(", "@", "NotNull", "final", "SQLInputs", "sqlInputs", ")", "throws", "Exception", "{", "ConnectionService", "connectionService", "=", "new", "ConnectionService", "(", ")", ";", "try", "(", "final", "Connection", ...
todo Run a SQL query with given configuration @return the formatted result set by colDelimiter and rowDelimiter @throws ClassNotFoundException @throws java.sql.SQLException
[ "todo", "Run", "a", "SQL", "query", "with", "given", "configuration" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/services/SQLQueryAllRowsService.java#L40-L56
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/services/helpers/GetObjectProperties.java
GetObjectProperties.getObjectProperties
@NotNull public static ObjectContent[] getObjectProperties(ConnectionResources connectionResources, ManagedObjectReference mor, String[] properties) throws RuntimeFaultFaultMsg, InvalidPropertyFau...
java
@NotNull public static ObjectContent[] getObjectProperties(ConnectionResources connectionResources, ManagedObjectReference mor, String[] properties) throws RuntimeFaultFaultMsg, InvalidPropertyFau...
[ "@", "NotNull", "public", "static", "ObjectContent", "[", "]", "getObjectProperties", "(", "ConnectionResources", "connectionResources", ",", "ManagedObjectReference", "mor", ",", "String", "[", "]", "properties", ")", "throws", "RuntimeFaultFaultMsg", ",", "InvalidProp...
Retrieve contents for a single object based on the property collector registered with the service. @param mor Managed Object Reference to get contents for @param properties names of properties of object to retrieve @return retrieved object contents
[ "Retrieve", "contents", "for", "a", "single", "object", "based", "on", "the", "property", "collector", "registered", "with", "the", "service", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/services/helpers/GetObjectProperties.java#L39-L68
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/services/helpers/GetObjectProperties.java
GetObjectProperties.retrievePropertiesAllObjects
private static List<ObjectContent> retrievePropertiesAllObjects(ConnectionResources connectionResources, List<PropertyFilterSpec> propertyFilterSpecList) throws RuntimeFaultFaultMsg, InvalidPropertyFaultMsg { VimPortType vimPort = c...
java
private static List<ObjectContent> retrievePropertiesAllObjects(ConnectionResources connectionResources, List<PropertyFilterSpec> propertyFilterSpecList) throws RuntimeFaultFaultMsg, InvalidPropertyFaultMsg { VimPortType vimPort = c...
[ "private", "static", "List", "<", "ObjectContent", ">", "retrievePropertiesAllObjects", "(", "ConnectionResources", "connectionResources", ",", "List", "<", "PropertyFilterSpec", ">", "propertyFilterSpecList", ")", "throws", "RuntimeFaultFaultMsg", ",", "InvalidPropertyFaultM...
Uses the new RetrievePropertiesEx method to emulate the now deprecated RetrieveProperties method @param propertyFilterSpecList @return list of object content @throws Exception
[ "Uses", "the", "new", "RetrievePropertiesEx", "method", "to", "emulate", "the", "now", "deprecated", "RetrieveProperties", "method" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/services/helpers/GetObjectProperties.java#L90-L126
train
CloudSlang/cs-actions
cs-xml/src/main/java/io/cloudslang/content/xml/utils/ValidateUtils.java
ValidateUtils.validateInputs
public static void validateInputs(EditXmlInputs inputs) throws Exception { validateXmlAndFilePathInputs(inputs.getXml(), inputs.getFilePath()); if (Constants.Inputs.MOVE_ACTION.equals(inputs.getAction())) { validateIsNotEmpty(inputs.getXpath2(), "xpath2 input is required for action 'move' "...
java
public static void validateInputs(EditXmlInputs inputs) throws Exception { validateXmlAndFilePathInputs(inputs.getXml(), inputs.getFilePath()); if (Constants.Inputs.MOVE_ACTION.equals(inputs.getAction())) { validateIsNotEmpty(inputs.getXpath2(), "xpath2 input is required for action 'move' "...
[ "public", "static", "void", "validateInputs", "(", "EditXmlInputs", "inputs", ")", "throws", "Exception", "{", "validateXmlAndFilePathInputs", "(", "inputs", ".", "getXml", "(", ")", ",", "inputs", ".", "getFilePath", "(", ")", ")", ";", "if", "(", "Constants"...
Validates the operation inputs. @param inputs@throws Exception for invalid inputs
[ "Validates", "the", "operation", "inputs", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-xml/src/main/java/io/cloudslang/content/xml/utils/ValidateUtils.java#L33-L48
train
CloudSlang/cs-actions
cs-azure/src/main/java/io/cloudslang/content/azure/actions/utils/GetSharedAccessKeyToken.java
GetSharedAccessKeyToken.execute
@Action(name = "Get shared access key token for Azure", outputs = { @Output(RETURN_RESULT), @Output(RETURN_CODE), @Output(EXCEPTION) }, responses = { @Response(text = SUCCESS, field = RETURN_CODE, value =...
java
@Action(name = "Get shared access key token for Azure", outputs = { @Output(RETURN_RESULT), @Output(RETURN_CODE), @Output(EXCEPTION) }, responses = { @Response(text = SUCCESS, field = RETURN_CODE, value =...
[ "@", "Action", "(", "name", "=", "\"Get shared access key token for Azure\"", ",", "outputs", "=", "{", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", "RETURN_CODE", ")", ",", "@", "Output", "(", "EXCEPTION", ")", "}", ",", "responses", ...
Generates the shared access key token for Azure API calls. @param identifier The Identifier text box in the Credentials section of the Service Management API tab of System Settings @param primaryOrSecondaryKey The Primary Key or the Secondary Key in the Credentials section of the Service Management API tab ...
[ "Generates", "the", "shared", "access", "key", "token", "for", "Azure", "API", "calls", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-azure/src/main/java/io/cloudslang/content/azure/actions/utils/GetSharedAccessKeyToken.java#L64-L88
train
CloudSlang/cs-actions
cs-lists/src/main/java/io/cloudslang/content/actions/ListSortAction.java
ListSortAction.sortList
@Action(name = "List Sort", outputs = { @Output(RESULT_TEXT), @Output(RESPONSE), @Output(RETURN_RESULT), @Output(RETURN_CODE) }, responses = { @Response(text = SUCCESS, field = RETURN_...
java
@Action(name = "List Sort", outputs = { @Output(RESULT_TEXT), @Output(RESPONSE), @Output(RETURN_RESULT), @Output(RETURN_CODE) }, responses = { @Response(text = SUCCESS, field = RETURN_...
[ "@", "Action", "(", "name", "=", "\"List Sort\"", ",", "outputs", "=", "{", "@", "Output", "(", "RESULT_TEXT", ")", ",", "@", "Output", "(", "RESPONSE", ")", ",", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", "RETURN_CODE", ")", ...
This method sorts a list of strings. If the list contains only numerical strings, it is sorted in numerical order. Otherwise it is sorted alphabetically. @param list The list to be sorted. @param delimiter The list delimiter. @param reverse A boolean value for sorting the list in reverse order. @return The sort...
[ "This", "method", "sorts", "a", "list", "of", "strings", ".", "If", "the", "list", "contains", "only", "numerical", "strings", "it", "is", "sorted", "in", "numerical", "order", ".", "Otherwise", "it", "is", "sorted", "alphabetically", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-lists/src/main/java/io/cloudslang/content/actions/ListSortAction.java#L57-L86
train
CloudSlang/cs-actions
cs-lists/src/main/java/io/cloudslang/content/actions/ListRemoverAction.java
ListRemoverAction.removeElement
@Action(name = "List Remover", outputs = { @Output(RESPONSE), @Output(RETURN_RESULT), @Output(RETURN_CODE) }, responses = { @Response(text = SUCCESS, field = RETURN_CODE, value = RETURN_CODE_SUCCESS, matc...
java
@Action(name = "List Remover", outputs = { @Output(RESPONSE), @Output(RETURN_RESULT), @Output(RETURN_CODE) }, responses = { @Response(text = SUCCESS, field = RETURN_CODE, value = RETURN_CODE_SUCCESS, matc...
[ "@", "Action", "(", "name", "=", "\"List Remover\"", ",", "outputs", "=", "{", "@", "Output", "(", "RESPONSE", ")", ",", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", "RETURN_CODE", ")", "}", ",", "responses", "=", "{", "@", "Res...
This method removes an element from a list of strings. @param list The list to remove from. @param index The index of the element to remove from the list. @param delimiter The list delimiter. @return The new list.
[ "This", "method", "removes", "an", "element", "from", "a", "list", "of", "strings", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-lists/src/main/java/io/cloudslang/content/actions/ListRemoverAction.java#L57-L87
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/C3P0PooledDataSourceProvider.java
C3P0PooledDataSourceProvider.openPooledDataSource
public DataSource openPooledDataSource(DBType aDbType, String aDbUrl, String aUsername, String aPassword) throws SQLException { final DataSource unPooledDS = DataSources.unpooledDataSource(aDbUrl, aUsername, aPassword); //override the default properties with ours final Map<String, Stri...
java
public DataSource openPooledDataSource(DBType aDbType, String aDbUrl, String aUsername, String aPassword) throws SQLException { final DataSource unPooledDS = DataSources.unpooledDataSource(aDbUrl, aUsername, aPassword); //override the default properties with ours final Map<String, Stri...
[ "public", "DataSource", "openPooledDataSource", "(", "DBType", "aDbType", ",", "String", "aDbUrl", ",", "String", "aUsername", ",", "String", "aPassword", ")", "throws", "SQLException", "{", "final", "DataSource", "unPooledDS", "=", "DataSources", ".", "unpooledData...
get the pooled datasource from c3p0 pool @param aDbType a supported database type. @param aDbUrl a connection url @param aUsername a username for the database @param aPassword a password for the database connection @return a DataSource a pooled data source @throws SQLException
[ "get", "the", "pooled", "datasource", "from", "c3p0", "pool" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/C3P0PooledDataSourceProvider.java#L111-L120
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/C3P0PooledDataSourceProvider.java
C3P0PooledDataSourceProvider.getPoolingProperties
private Map<String, String> getPoolingProperties(DBType aDbType) { Map<String, String> retMap = new HashMap<>(); //general properties //acquire increment size String acqIncSize = this.getPropStringValue(CONNECTION_ACQUIREINCREMENT_SIZE_NAME, CONNECTION_ACQUIREINCREMENT_S...
java
private Map<String, String> getPoolingProperties(DBType aDbType) { Map<String, String> retMap = new HashMap<>(); //general properties //acquire increment size String acqIncSize = this.getPropStringValue(CONNECTION_ACQUIREINCREMENT_SIZE_NAME, CONNECTION_ACQUIREINCREMENT_S...
[ "private", "Map", "<", "String", ",", "String", ">", "getPoolingProperties", "(", "DBType", "aDbType", ")", "{", "Map", "<", "String", ",", "String", ">", "retMap", "=", "new", "HashMap", "<>", "(", ")", ";", "//general properties", "//acquire increment size",...
set up the properties for c3p0 based on the properties values in databasePooling.properties. @param aDbType a supported db type. @return a HashMap of c3p0 db pooling properties.
[ "set", "up", "the", "properties", "for", "c3p0", "based", "on", "the", "properties", "values", "in", "databasePooling", ".", "properties", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/C3P0PooledDataSourceProvider.java#L129-L231
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/C3P0PooledDataSourceProvider.java
C3P0PooledDataSourceProvider.getAllConnectionNumber
public int getAllConnectionNumber(DataSource aPooledDataSource) throws SQLException { PooledDataSource pDs = (PooledDataSource) aPooledDataSource; return pDs.getNumConnectionsAllUsers(); }
java
public int getAllConnectionNumber(DataSource aPooledDataSource) throws SQLException { PooledDataSource pDs = (PooledDataSource) aPooledDataSource; return pDs.getNumConnectionsAllUsers(); }
[ "public", "int", "getAllConnectionNumber", "(", "DataSource", "aPooledDataSource", ")", "throws", "SQLException", "{", "PooledDataSource", "pDs", "=", "(", "PooledDataSource", ")", "aPooledDataSource", ";", "return", "pDs", ".", "getNumConnectionsAllUsers", "(", ")", ...
The followings are only for testing purpose
[ "The", "followings", "are", "only", "for", "testing", "purpose" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/C3P0PooledDataSourceProvider.java#L234-L237
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/utils/SQLUtils.java
SQLUtils.getIPv4OrIPv6WithSquareBracketsHost
public static String getIPv4OrIPv6WithSquareBracketsHost(String dbServer) { final Address address = new Address(dbServer); return address.getURIIPV6Literal(); }
java
public static String getIPv4OrIPv6WithSquareBracketsHost(String dbServer) { final Address address = new Address(dbServer); return address.getURIIPV6Literal(); }
[ "public", "static", "String", "getIPv4OrIPv6WithSquareBracketsHost", "(", "String", "dbServer", ")", "{", "final", "Address", "address", "=", "new", "Address", "(", "dbServer", ")", ";", "return", "address", ".", "getURIIPV6Literal", "(", ")", ";", "}" ]
Method returning the host surrounded by square brackets if 'dbServer' is IPv6 format. Otherwise the returned string will be the same. @return
[ "Method", "returning", "the", "host", "surrounded", "by", "square", "brackets", "if", "dbServer", "is", "IPv6", "format", ".", "Otherwise", "the", "returned", "string", "will", "be", "the", "same", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/utils/SQLUtils.java#L71-L74
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/utils/SQLUtils.java
SQLUtils.computeSessionId
@NotNull public static String computeSessionId(@NotNull final String aString) { final byte[] byteData = DigestUtils.sha256(aString.getBytes()); final StringBuilder sb = new StringBuilder("SQLQuery:"); for (final byte aByteData : byteData) { final String hex = Integer.toHex...
java
@NotNull public static String computeSessionId(@NotNull final String aString) { final byte[] byteData = DigestUtils.sha256(aString.getBytes()); final StringBuilder sb = new StringBuilder("SQLQuery:"); for (final byte aByteData : byteData) { final String hex = Integer.toHex...
[ "@", "NotNull", "public", "static", "String", "computeSessionId", "(", "@", "NotNull", "final", "String", "aString", ")", "{", "final", "byte", "[", "]", "byteData", "=", "DigestUtils", ".", "sha256", "(", "aString", ".", "getBytes", "(", ")", ")", ";", ...
compute session id for JDBC operations
[ "compute", "session", "id", "for", "JDBC", "operations" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/utils/SQLUtils.java#L93-L106
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/DBConnectionManager.java
DBConnectionManager.cleanDataSources
public void cleanDataSources() { Hashtable<String, List<String>> removedDsKeyTable = null; //gather all the empty ds's key, can't remove item while iterate Enumeration<String> allPoolKeys = dbmsPoolTable.keys(); while (allPoolKeys.hasMoreElements()) { String dbPoolKey = all...
java
public void cleanDataSources() { Hashtable<String, List<String>> removedDsKeyTable = null; //gather all the empty ds's key, can't remove item while iterate Enumeration<String> allPoolKeys = dbmsPoolTable.keys(); while (allPoolKeys.hasMoreElements()) { String dbPoolKey = all...
[ "public", "void", "cleanDataSources", "(", ")", "{", "Hashtable", "<", "String", ",", "List", "<", "String", ">", ">", "removedDsKeyTable", "=", "null", ";", "//gather all the empty ds's key, can't remove item while iterate", "Enumeration", "<", "String", ">", "allPoo...
clean any empty datasource and pool in the dbmsPool table.
[ "clean", "any", "empty", "datasource", "and", "pool", "in", "the", "dbmsPool", "table", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/DBConnectionManager.java#L215-L297
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/DBConnectionManager.java
DBConnectionManager.shutdownDbmsPools
public synchronized void shutdownDbmsPools() { //force shutdown //runnable datasourceCleaner.shutdown(); datasourceCleaner = null; //shell for the runnable cleanerThread.interrupt();//stop the thread cleanerThread = null; if (dbmsPoolTable == null) { ...
java
public synchronized void shutdownDbmsPools() { //force shutdown //runnable datasourceCleaner.shutdown(); datasourceCleaner = null; //shell for the runnable cleanerThread.interrupt();//stop the thread cleanerThread = null; if (dbmsPoolTable == null) { ...
[ "public", "synchronized", "void", "shutdownDbmsPools", "(", ")", "{", "//force shutdown", "//runnable", "datasourceCleaner", ".", "shutdown", "(", ")", ";", "datasourceCleaner", "=", "null", ";", "//shell for the runnable", "cleanerThread", ".", "interrupt", "(", ")",...
force shutdown everything
[ "force", "shutdown", "everything" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/DBConnectionManager.java#L302-L331
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/DBConnectionManager.java
DBConnectionManager.getPropBooleanValue
protected boolean getPropBooleanValue(String aPropName, String aDefaultValue) { boolean retValue; String temp = dbPoolingProperties.getProperty(aPropName, aDefaultValue); retValue = Boolean.valueOf(temp); return retValue; }
java
protected boolean getPropBooleanValue(String aPropName, String aDefaultValue) { boolean retValue; String temp = dbPoolingProperties.getProperty(aPropName, aDefaultValue); retValue = Boolean.valueOf(temp); return retValue; }
[ "protected", "boolean", "getPropBooleanValue", "(", "String", "aPropName", ",", "String", "aDefaultValue", ")", "{", "boolean", "retValue", ";", "String", "temp", "=", "dbPoolingProperties", ".", "getProperty", "(", "aPropName", ",", "aDefaultValue", ")", ";", "re...
get boolean value based on the property name from property file the property file is databasePooling.properties @param aPropName a property name @param aDefaultValue a default value for that property, if the property is not there. @return boolean value of that property
[ "get", "boolean", "value", "based", "on", "the", "property", "name", "from", "property", "file", "the", "property", "file", "is", "databasePooling", ".", "properties" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/DBConnectionManager.java#L341-L348
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/DBConnectionManager.java
DBConnectionManager.getPropIntValue
protected int getPropIntValue(String aPropName, String aDefaultValue) { int retValue; String temp = dbPoolingProperties.getProperty(aPropName, aDefaultValue); retValue = Integer.valueOf(temp); return retValue; }
java
protected int getPropIntValue(String aPropName, String aDefaultValue) { int retValue; String temp = dbPoolingProperties.getProperty(aPropName, aDefaultValue); retValue = Integer.valueOf(temp); return retValue; }
[ "protected", "int", "getPropIntValue", "(", "String", "aPropName", ",", "String", "aDefaultValue", ")", "{", "int", "retValue", ";", "String", "temp", "=", "dbPoolingProperties", ".", "getProperty", "(", "aPropName", ",", "aDefaultValue", ")", ";", "retValue", "...
get int value based on the property name from property file the property file is databasePooling.properties @param aPropName a property name @param aDefaultValue a default value for that property, if the property is not there. @return int value of that property
[ "get", "int", "value", "based", "on", "the", "property", "name", "from", "property", "file", "the", "property", "file", "is", "databasePooling", ".", "properties" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/DBConnectionManager.java#L358-L365
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/DBConnectionManager.java
DBConnectionManager.createCleaner
private void createCleaner() { if (cleanerThread == null) { int interval = getPropIntValue (DB_DATASOURCE_CLEAN_INTERNAL_NAME, DB_DATASOURCE_CLEAN_INTERNAL_DEFAULT_VALUE); //this runnable this.datasourceCleaner = new PooledDat...
java
private void createCleaner() { if (cleanerThread == null) { int interval = getPropIntValue (DB_DATASOURCE_CLEAN_INTERNAL_NAME, DB_DATASOURCE_CLEAN_INTERNAL_DEFAULT_VALUE); //this runnable this.datasourceCleaner = new PooledDat...
[ "private", "void", "createCleaner", "(", ")", "{", "if", "(", "cleanerThread", "==", "null", ")", "{", "int", "interval", "=", "getPropIntValue", "(", "DB_DATASOURCE_CLEAN_INTERNAL_NAME", ",", "DB_DATASOURCE_CLEAN_INTERNAL_DEFAULT_VALUE", ")", ";", "//this runnable", ...
create and start a pool cleaner if pooling is enabled.
[ "create", "and", "start", "a", "pool", "cleaner", "if", "pooling", "is", "enabled", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/DBConnectionManager.java#L370-L384
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/DBConnectionManager.java
DBConnectionManager.createDataSource
protected DataSource createDataSource(DBType aDbType, String aDbUrl, String aUsername, String aPassword, Hashtable<String, DataSource> aDsTable) ...
java
protected DataSource createDataSource(DBType aDbType, String aDbUrl, String aUsername, String aPassword, Hashtable<String, DataSource> aDsTable) ...
[ "protected", "DataSource", "createDataSource", "(", "DBType", "aDbType", ",", "String", "aDbUrl", ",", "String", "aUsername", ",", "String", "aPassword", ",", "Hashtable", "<", "String", ",", "DataSource", ">", "aDsTable", ")", "throws", "SQLException", "{", "Da...
create a new pooled datasource if total max pool size for the dbms is still ok. total max pool size per user <= total max pool size specified for specific db type. for example, max pool size per user = 20, total max pool size for oracle dbms is 100. only 5 datasource can be opened. @param aDbType one of the supporte...
[ "create", "a", "new", "pooled", "datasource", "if", "total", "max", "pool", "size", "for", "the", "dbms", "is", "still", "ok", ".", "total", "max", "pool", "size", "per", "user", "<", "=", "total", "max", "pool", "size", "specified", "for", "specific", ...
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/DBConnectionManager.java#L515-L569
train
CloudSlang/cs-actions
cs-json/src/main/java/io/cloudslang/content/json/services/JsonService.java
JsonService.retrieveWrappingQuoteTypeOfJsonMemberNames
private char retrieveWrappingQuoteTypeOfJsonMemberNames(String jsonString) { char quote = '\"'; // the default quote character used to specify json member names and string value according to the json specification for (char c : jsonString.toCharArray()) { if (c == '\'' || c == '\"') { ...
java
private char retrieveWrappingQuoteTypeOfJsonMemberNames(String jsonString) { char quote = '\"'; // the default quote character used to specify json member names and string value according to the json specification for (char c : jsonString.toCharArray()) { if (c == '\'' || c == '\"') { ...
[ "private", "char", "retrieveWrappingQuoteTypeOfJsonMemberNames", "(", "String", "jsonString", ")", "{", "char", "quote", "=", "'", "'", ";", "// the default quote character used to specify json member names and string value according to the json specification", "for", "(", "char",...
Returns the quote character used for specifying json member names and String values of json members @param jsonString the source json from which to extract the wrapping quote @return either one of the characters ' (single quote)or " (double quote)
[ "Returns", "the", "quote", "character", "used", "for", "specifying", "json", "member", "names", "and", "String", "values", "of", "json", "members" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-json/src/main/java/io/cloudslang/content/json/services/JsonService.java#L88-L97
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/services/GuestService.java
GuestService.customizeVM
public Map<String, String> customizeVM(HttpInputs httpInputs, VmInputs vmInputs, GuestInputs guestInputs, boolean isWin) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { ManagedObjectReference vmMor = new MorObjectH...
java
public Map<String, String> customizeVM(HttpInputs httpInputs, VmInputs vmInputs, GuestInputs guestInputs, boolean isWin) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { ManagedObjectReference vmMor = new MorObjectH...
[ "public", "Map", "<", "String", ",", "String", ">", "customizeVM", "(", "HttpInputs", "httpInputs", ",", "VmInputs", "vmInputs", ",", "GuestInputs", "guestInputs", ",", "boolean", "isWin", ")", "throws", "Exception", "{", "ConnectionResources", "connectionResources"...
Method used to connect to specified data center and customize the windows OS based virtual machine identified by the inputs provided. @param httpInputs Object that has all the inputs necessary to made a connection to data center @param vmInputs Object that has all the specific inputs necessary to identify the targ...
[ "Method", "used", "to", "connect", "to", "specified", "data", "center", "and", "customize", "the", "windows", "OS", "based", "virtual", "machine", "identified", "by", "the", "inputs", "provided", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/services/GuestService.java#L41-L69
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/services/GuestService.java
GuestService.mountTools
public Map<String, String> mountTools(HttpInputs httpInputs, VmInputs vmInputs) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { ManagedObjectReference vmMor = new MorObjectHandler() .getMor(connectionResour...
java
public Map<String, String> mountTools(HttpInputs httpInputs, VmInputs vmInputs) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { ManagedObjectReference vmMor = new MorObjectHandler() .getMor(connectionResour...
[ "public", "Map", "<", "String", ",", "String", ">", "mountTools", "(", "HttpInputs", "httpInputs", ",", "VmInputs", "vmInputs", ")", "throws", "Exception", "{", "ConnectionResources", "connectionResources", "=", "new", "ConnectionResources", "(", "httpInputs", ",", ...
Method used to connect to specified data center and start the Install Tools process on virtual machine identified by the inputs provided. @param httpInputs Object that has all the inputs necessary to made a connection to data center @param vmInputs Object that has all the specific inputs necessary to identify the ta...
[ "Method", "used", "to", "connect", "to", "specified", "data", "center", "and", "start", "the", "Install", "Tools", "process", "on", "virtual", "machine", "identified", "by", "the", "inputs", "provided", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/services/GuestService.java#L81-L101
train
CloudSlang/cs-actions
cs-postgres/src/main/java/io/cloudslang/content/postgres/services/ConfigService.java
ConfigService.validateAndBuildKeyValuesMap
public static Map<String, Object> validateAndBuildKeyValuesMap(String listenAddresses, String port, String ssl, String sslCaFile, String sslCertFile, String sslKeyFile, String maxConnections, String sharedBuffers, ...
java
public static Map<String, Object> validateAndBuildKeyValuesMap(String listenAddresses, String port, String ssl, String sslCaFile, String sslCertFile, String sslKeyFile, String maxConnections, String sharedBuffers, ...
[ "public", "static", "Map", "<", "String", ",", "Object", ">", "validateAndBuildKeyValuesMap", "(", "String", "listenAddresses", ",", "String", "port", ",", "String", "ssl", ",", "String", "sslCaFile", ",", "String", "sslCertFile", ",", "String", "sslKeyFile", ",...
Method to validate inputs and consolidate to a map. @param listenAddresses The list of addresses where the PostgreSQL database listens @param port The port the PostgreSQL database should listen. @param ssl Enable SSL connections. @param sslCaFile Name of the file containing the...
[ "Method", "to", "validate", "inputs", "and", "consolidate", "to", "a", "map", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-postgres/src/main/java/io/cloudslang/content/postgres/services/ConfigService.java#L45-L95
train
CloudSlang/cs-actions
cs-postgres/src/main/java/io/cloudslang/content/postgres/services/ConfigService.java
ConfigService.changeProperty
public static void changeProperty(String filename, Map<String, Object> keyValuePairs) throws IOException { if (keyValuePairs.size() == 0) { return; } final File file = new File(filename); final File tmpFile = new File(file + ".tmp"); PrintWriter pw = new PrintWriter...
java
public static void changeProperty(String filename, Map<String, Object> keyValuePairs) throws IOException { if (keyValuePairs.size() == 0) { return; } final File file = new File(filename); final File tmpFile = new File(file + ".tmp"); PrintWriter pw = new PrintWriter...
[ "public", "static", "void", "changeProperty", "(", "String", "filename", ",", "Map", "<", "String", ",", "Object", ">", "keyValuePairs", ")", "throws", "IOException", "{", "if", "(", "keyValuePairs", ".", "size", "(", ")", "==", "0", ")", "{", "return", ...
Method to modify the Postgres config postgresql.conf based on key-value pairs @param filename The filename of the config to be updated. @param keyValuePairs A map of key-value pairs.
[ "Method", "to", "modify", "the", "Postgres", "config", "postgresql", ".", "conf", "based", "on", "key", "-", "value", "pairs" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-postgres/src/main/java/io/cloudslang/content/postgres/services/ConfigService.java#L103-L148
train
CloudSlang/cs-actions
cs-postgres/src/main/java/io/cloudslang/content/postgres/services/ConfigService.java
ConfigService.changeProperty
public static void changeProperty(String filename, String[] allowedHosts, String[] allowedUsers) throws IOException { if ((allowedHosts == null || allowedHosts.length == 0) && (allowedUsers == null || allowedUsers.length == 0)) { return; } final File file = new File(filename); ...
java
public static void changeProperty(String filename, String[] allowedHosts, String[] allowedUsers) throws IOException { if ((allowedHosts == null || allowedHosts.length == 0) && (allowedUsers == null || allowedUsers.length == 0)) { return; } final File file = new File(filename); ...
[ "public", "static", "void", "changeProperty", "(", "String", "filename", ",", "String", "[", "]", "allowedHosts", ",", "String", "[", "]", "allowedUsers", ")", "throws", "IOException", "{", "if", "(", "(", "allowedHosts", "==", "null", "||", "allowedHosts", ...
Method to modify the Postgres config pg_hba.config @param filename The filename of the config to be updated. @param allowedHosts A wildcard or a comma-separated list of hostnames or IPs (IPv4 or IPv6). @param allowedUsers A comma-separated list of PostgreSQL users. If no value is specified for this input, all user...
[ "Method", "to", "modify", "the", "Postgres", "config", "pg_hba", ".", "config" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-postgres/src/main/java/io/cloudslang/content/postgres/services/ConfigService.java#L158-L209
train
CloudSlang/cs-actions
cs-xml/src/main/java/io/cloudslang/content/xml/actions/ConvertXmlToJson.java
ConvertXmlToJson.execute
@Action(name = "Convert XML to Json", outputs = { @Output(NAMESPACES_PREFIXES), @Output(NAMESPACES_URIS), @Output(RETURN_RESULT), @Output(RETURN_CODE), @Output(EXCEPTION) }, responses ...
java
@Action(name = "Convert XML to Json", outputs = { @Output(NAMESPACES_PREFIXES), @Output(NAMESPACES_URIS), @Output(RETURN_RESULT), @Output(RETURN_CODE), @Output(EXCEPTION) }, responses ...
[ "@", "Action", "(", "name", "=", "\"Convert XML to Json\"", ",", "outputs", "=", "{", "@", "Output", "(", "NAMESPACES_PREFIXES", ")", ",", "@", "Output", "(", "NAMESPACES_URIS", ")", ",", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", ...
Converts a XML document to a JSON array or a JSON object. @param xml - The XML document (in the form of a String) @param textElementsName - specify custom property name for text elements. This will be used for elements that have attributes and text content. Default value: '_text' @param includeRootEle...
[ "Converts", "a", "XML", "document", "to", "a", "JSON", "array", "or", "a", "JSON", "object", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-xml/src/main/java/io/cloudslang/content/xml/actions/ConvertXmlToJson.java#L70-L118
train
CloudSlang/cs-actions
cs-lists/src/main/java/io/cloudslang/content/actions/ListTrimAction.java
ListTrimAction.trimList
@Action(name = "Trim List", outputs = { @Output(RESULT_TEXT), @Output(RESPONSE), @Output(RETURN_RESULT), @Output(RETURN_CODE) }, responses = {@Response(text = SUCCESS, field = RETURN_CODE, value = RETURN_...
java
@Action(name = "Trim List", outputs = { @Output(RESULT_TEXT), @Output(RESPONSE), @Output(RETURN_RESULT), @Output(RETURN_CODE) }, responses = {@Response(text = SUCCESS, field = RETURN_CODE, value = RETURN_...
[ "@", "Action", "(", "name", "=", "\"Trim List\"", ",", "outputs", "=", "{", "@", "Output", "(", "RESULT_TEXT", ")", ",", "@", "Output", "(", "RESPONSE", ")", ",", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", "RETURN_CODE", ")", ...
This method trims values from a list. The values trimmed are equally distributed from the high and low ends of the list. The list is sorted before trimming. The number of elements trimmed is dictated by the percentage that is passed in. If the percentage would indicate an odd number of elements the number trimmed is l...
[ "This", "method", "trims", "values", "from", "a", "list", ".", "The", "values", "trimmed", "are", "equally", "distributed", "from", "the", "high", "and", "low", "ends", "of", "the", "list", ".", "The", "list", "is", "sorted", "before", "trimming", ".", "...
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-lists/src/main/java/io/cloudslang/content/actions/ListTrimAction.java#L60-L103
train
CloudSlang/cs-actions
cs-utilities/src/main/java/io/cloudslang/content/utilities/actions/FindTextInPdf.java
FindTextInPdf.execute
@Action(name = "Find Text in PDF", description = FIND_TEXT_IN_PDF_OPERATION_DESC, outputs = { @Output(value = RETURN_CODE, description = RETURN_CODE_DESC), @Output(value = RETURN_RESULT, description = FIND_TEXT_IN_PDF_RETURN_RESULT_DESC), ...
java
@Action(name = "Find Text in PDF", description = FIND_TEXT_IN_PDF_OPERATION_DESC, outputs = { @Output(value = RETURN_CODE, description = RETURN_CODE_DESC), @Output(value = RETURN_RESULT, description = FIND_TEXT_IN_PDF_RETURN_RESULT_DESC), ...
[ "@", "Action", "(", "name", "=", "\"Find Text in PDF\"", ",", "description", "=", "FIND_TEXT_IN_PDF_OPERATION_DESC", ",", "outputs", "=", "{", "@", "Output", "(", "value", "=", "RETURN_CODE", ",", "description", "=", "RETURN_CODE_DESC", ")", ",", "@", "Output", ...
This operation checks if a text input is found in a PDF file. @param text The text to be searched for in the PDF file. @param ignoreCase Whether to ignore if characters of the text are lowercase or uppercase. Valid values: "true", "false". Default Value: "false" @param pathToFile The full path to the PDF file. @...
[ "This", "operation", "checks", "if", "a", "text", "input", "is", "found", "in", "a", "PDF", "file", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-utilities/src/main/java/io/cloudslang/content/utilities/actions/FindTextInPdf.java#L72-L102
train
CloudSlang/cs-actions
cs-lists/src/main/java/io/cloudslang/content/actions/ListPrependerAction.java
ListPrependerAction.prependElement
@Action(name = "List Prepender", outputs = { @Output(RESPONSE), @Output(RETURN_RESULT), @Output(RETURN_CODE) }, responses = { @Response(text = SUCCESS, field = RETURN_CODE, value = RETURN_CODE_SUCCESS, ma...
java
@Action(name = "List Prepender", outputs = { @Output(RESPONSE), @Output(RETURN_RESULT), @Output(RETURN_CODE) }, responses = { @Response(text = SUCCESS, field = RETURN_CODE, value = RETURN_CODE_SUCCESS, ma...
[ "@", "Action", "(", "name", "=", "\"List Prepender\"", ",", "outputs", "=", "{", "@", "Output", "(", "RESPONSE", ")", ",", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", "RETURN_CODE", ")", "}", ",", "responses", "=", "{", "@", "R...
This method pre-pends an element to a list of strings. @param list The list to pre-pend to. @param element The element to pre-pend to the list. @param delimiter The list delimiter. Delimiter can be empty string. @return The new list.
[ "This", "method", "pre", "-", "pends", "an", "element", "to", "a", "list", "of", "strings", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-lists/src/main/java/io/cloudslang/content/actions/ListPrependerAction.java#L55-L81
train
CloudSlang/cs-actions
cs-xml/src/main/java/io/cloudslang/content/xml/actions/AppendChild.java
AppendChild.execute
@Action(name = "Append Child", outputs = { @Output(RETURN_CODE), @Output(RETURN_RESULT), @Output(RESULT_XML), @Output(ERROR_MESSAGE)}, responses = { @Response(text = ResponseNames.SUCCESS, field =...
java
@Action(name = "Append Child", outputs = { @Output(RETURN_CODE), @Output(RETURN_RESULT), @Output(RESULT_XML), @Output(ERROR_MESSAGE)}, responses = { @Response(text = ResponseNames.SUCCESS, field =...
[ "@", "Action", "(", "name", "=", "\"Append Child\"", ",", "outputs", "=", "{", "@", "Output", "(", "RETURN_CODE", ")", ",", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", "RESULT_XML", ")", ",", "@", "Output", "(", "ERROR_MESSAGE", ...
Appends a child to an XML element. @param xmlDocument XML string to append a child in @param xmlDocumentSource The source type of the xml document. Valid values: xmlString, xmlPath Default value: xmlString @param xPathQuery XPATH query that results in an element or element list, where child element will b...
[ "Appends", "a", "child", "to", "an", "XML", "element", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-xml/src/main/java/io/cloudslang/content/xml/actions/AppendChild.java#L46-L74
train
CloudSlang/cs-actions
cs-ssh/src/main/java/io/cloudslang/content/ssh/utils/CacheUtils.java
CacheUtils.saveSshSessionAndChannel
public static boolean saveSshSessionAndChannel(Session session, Channel channel, GlobalSessionObject<Map<String, SSHConnection>> sessionParam, String sessionId) { final SSHConnection sshConnection; if (channel != null) { sshConnection = new SSHConnection(session, channel); } else { ...
java
public static boolean saveSshSessionAndChannel(Session session, Channel channel, GlobalSessionObject<Map<String, SSHConnection>> sessionParam, String sessionId) { final SSHConnection sshConnection; if (channel != null) { sshConnection = new SSHConnection(session, channel); } else { ...
[ "public", "static", "boolean", "saveSshSessionAndChannel", "(", "Session", "session", ",", "Channel", "channel", ",", "GlobalSessionObject", "<", "Map", "<", "String", ",", "SSHConnection", ">", ">", "sessionParam", ",", "String", "sessionId", ")", "{", "final", ...
Save the SSH session and the channel in the cache. @param session The SSH session. @param channel The SSH channel. @param sessionParam The cache: GlobalSessionObject or SessionObject.
[ "Save", "the", "SSH", "session", "and", "the", "channel", "in", "the", "cache", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-ssh/src/main/java/io/cloudslang/content/ssh/utils/CacheUtils.java#L79-L96
train
CloudSlang/cs-actions
cs-powershell/src/main/java/io/cloudslang/content/entities/EncoderDecoder.java
EncoderDecoder.encodeStringInBase64
public static String encodeStringInBase64(String str, Charset charset) { return new String(Base64.encodeBase64(str.getBytes(charset))); }
java
public static String encodeStringInBase64(String str, Charset charset) { return new String(Base64.encodeBase64(str.getBytes(charset))); }
[ "public", "static", "String", "encodeStringInBase64", "(", "String", "str", ",", "Charset", "charset", ")", "{", "return", "new", "String", "(", "Base64", ".", "encodeBase64", "(", "str", ".", "getBytes", "(", "charset", ")", ")", ")", ";", "}" ]
Encodes a string to base64. @param str The string value to encode. @param charset The encoding charset used to obtain the byte sequence of the string. @return The encoded byte sequence using the base64 encoding.
[ "Encodes", "a", "string", "to", "base64", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-powershell/src/main/java/io/cloudslang/content/entities/EncoderDecoder.java#L36-L38
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/services/ClusterComputeResourceService.java
ClusterComputeResourceService.createVmOverrideConfiguration
private ClusterDasVmConfigInfo createVmOverrideConfiguration(ManagedObjectReference vmMor, String restartPriority) { ClusterDasVmConfigInfo clusterDasVmConfigInfo = new ClusterDasVmConfigInfo(); clusterDasVmConfigInfo.setKey(vmMor); clusterDasVmConfigInfo.setDasSettings(createClusterDasVmSetting...
java
private ClusterDasVmConfigInfo createVmOverrideConfiguration(ManagedObjectReference vmMor, String restartPriority) { ClusterDasVmConfigInfo clusterDasVmConfigInfo = new ClusterDasVmConfigInfo(); clusterDasVmConfigInfo.setKey(vmMor); clusterDasVmConfigInfo.setDasSettings(createClusterDasVmSetting...
[ "private", "ClusterDasVmConfigInfo", "createVmOverrideConfiguration", "(", "ManagedObjectReference", "vmMor", ",", "String", "restartPriority", ")", "{", "ClusterDasVmConfigInfo", "clusterDasVmConfigInfo", "=", "new", "ClusterDasVmConfigInfo", "(", ")", ";", "clusterDasVmConfig...
Das method adds a vm override to a HA enabled Cluster. @param vmMor @param restartPriority @return
[ "Das", "method", "adds", "a", "vm", "override", "to", "a", "HA", "enabled", "Cluster", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/services/ClusterComputeResourceService.java#L423-L428
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/services/ClusterComputeResourceService.java
ClusterComputeResourceService.createClusterDasVmSettings
private ClusterDasVmSettings createClusterDasVmSettings(String restartPriority) { ClusterDasVmSettings clusterDasVmSettings = new ClusterDasVmSettings(); clusterDasVmSettings.setRestartPriority(restartPriority); return clusterDasVmSettings; }
java
private ClusterDasVmSettings createClusterDasVmSettings(String restartPriority) { ClusterDasVmSettings clusterDasVmSettings = new ClusterDasVmSettings(); clusterDasVmSettings.setRestartPriority(restartPriority); return clusterDasVmSettings; }
[ "private", "ClusterDasVmSettings", "createClusterDasVmSettings", "(", "String", "restartPriority", ")", "{", "ClusterDasVmSettings", "clusterDasVmSettings", "=", "new", "ClusterDasVmSettings", "(", ")", ";", "clusterDasVmSettings", ".", "setRestartPriority", "(", "restartPrio...
Das method creates a cluster vm setting. @param restartPriority @return
[ "Das", "method", "creates", "a", "cluster", "vm", "setting", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/services/ClusterComputeResourceService.java#L467-L471
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/services/ClusterComputeResourceService.java
ClusterComputeResourceService.getClusterConfiguration
private ClusterConfigInfoEx getClusterConfiguration(ConnectionResources connectionResources, ManagedObjectReference clusterMor, String clusterName) throws RuntimeFaultFaultMsg, InvalidPropertyFaultMsg { ObjectContent[] objectContents = GetObjectProperties....
java
private ClusterConfigInfoEx getClusterConfiguration(ConnectionResources connectionResources, ManagedObjectReference clusterMor, String clusterName) throws RuntimeFaultFaultMsg, InvalidPropertyFaultMsg { ObjectContent[] objectContents = GetObjectProperties....
[ "private", "ClusterConfigInfoEx", "getClusterConfiguration", "(", "ConnectionResources", "connectionResources", ",", "ManagedObjectReference", "clusterMor", ",", "String", "clusterName", ")", "throws", "RuntimeFaultFaultMsg", ",", "InvalidPropertyFaultMsg", "{", "ObjectContent", ...
Das method gets the current cluster configurations. @param connectionResources @param clusterMor @param clusterName @return @throws RuntimeFaultFaultMsg @throws InvalidPropertyFaultMsg
[ "Das", "method", "gets", "the", "current", "cluster", "configurations", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/services/ClusterComputeResourceService.java#L483-L493
train
CloudSlang/cs-actions
cs-postgres/src/main/java/io/cloudslang/content/postgres/actions/UpdatePostgresConfigAction.java
UpdatePostgresConfigAction.execute
@Action(name = "Update Property Value", outputs = { @Output(RETURN_CODE), @Output(RETURN_RESULT), @Output(EXCEPTION), @Output(STDERR) }, responses = { @Response(text = ResponseNames.SU...
java
@Action(name = "Update Property Value", outputs = { @Output(RETURN_CODE), @Output(RETURN_RESULT), @Output(EXCEPTION), @Output(STDERR) }, responses = { @Response(text = ResponseNames.SU...
[ "@", "Action", "(", "name", "=", "\"Update Property Value\"", ",", "outputs", "=", "{", "@", "Output", "(", "RETURN_CODE", ")", ",", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", "EXCEPTION", ")", ",", "@", "Output", "(", "STDERR", ...
Updates the Postgres config postgresql.conf @param installationPath The full path to the PostgreSQL configuration file in the local machine to be updated @param listenAddresses The list of addresses where the PostgreSQL database listens @param port The port the PostgreSQL database should listen. @pa...
[ "Updates", "the", "Postgres", "config", "postgresql", ".", "conf" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-postgres/src/main/java/io/cloudslang/content/postgres/actions/UpdatePostgresConfigAction.java#L58-L97
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/connection/helpers/MoRefHandler.java
MoRefHandler.inContainerByType
public Map<String, ManagedObjectReference> inContainerByType(ManagedObjectReference folder, String morefType, RetrieveOptions retrieveOptions) throws InvalidPropertyFaultMsg, Run...
java
public Map<String, ManagedObjectReference> inContainerByType(ManagedObjectReference folder, String morefType, RetrieveOptions retrieveOptions) throws InvalidPropertyFaultMsg, Run...
[ "public", "Map", "<", "String", ",", "ManagedObjectReference", ">", "inContainerByType", "(", "ManagedObjectReference", "folder", ",", "String", "morefType", ",", "RetrieveOptions", "retrieveOptions", ")", "throws", "InvalidPropertyFaultMsg", ",", "RuntimeFaultFaultMsg", ...
Returns all the MOREFs of the specified type that are present under the container @param folder {@link ManagedObjectReference} of the container to begin the search from @param morefType Type of the managed entity that needs to be searched @return Map of name and MOREF of the managed objects present. If none exist t...
[ "Returns", "all", "the", "MOREFs", "of", "the", "specified", "type", "that", "are", "present", "under", "the", "container" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/connection/helpers/MoRefHandler.java#L98-L105
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/connection/helpers/MoRefHandler.java
MoRefHandler.containerViewByType
private RetrieveResult containerViewByType(final ManagedObjectReference container, final String morefType, final RetrieveOptions retrieveOptions, final String... morefProperties ...
java
private RetrieveResult containerViewByType(final ManagedObjectReference container, final String morefType, final RetrieveOptions retrieveOptions, final String... morefProperties ...
[ "private", "RetrieveResult", "containerViewByType", "(", "final", "ManagedObjectReference", "container", ",", "final", "String", "morefType", ",", "final", "RetrieveOptions", "retrieveOptions", ",", "final", "String", "...", "morefProperties", ")", "throws", "RuntimeFault...
Returns the raw RetrieveResult object for the provided container filtered on properties list @param container - container to look in @param morefType - type to filter for @param morefProperties - properties to include @return com.vmware.vim25.RetrieveResult for this query @throws RuntimeFaultFaultMsg @thro...
[ "Returns", "the", "raw", "RetrieveResult", "object", "for", "the", "provided", "container", "filtered", "on", "properties", "list" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/connection/helpers/MoRefHandler.java#L141-L149
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/connection/helpers/MoRefHandler.java
MoRefHandler.containerViewByType
private RetrieveResult containerViewByType(final ManagedObjectReference container, final String morefType, final RetrieveOptions retrieveOptions ) throws RuntimeFaultFaultMsg, InvalidPropertyFaultMsg { return this....
java
private RetrieveResult containerViewByType(final ManagedObjectReference container, final String morefType, final RetrieveOptions retrieveOptions ) throws RuntimeFaultFaultMsg, InvalidPropertyFaultMsg { return this....
[ "private", "RetrieveResult", "containerViewByType", "(", "final", "ManagedObjectReference", "container", ",", "final", "String", "morefType", ",", "final", "RetrieveOptions", "retrieveOptions", ")", "throws", "RuntimeFaultFaultMsg", ",", "InvalidPropertyFaultMsg", "{", "ret...
Initialize the helper object on the current connection at invocation time. Do not initialize on construction since the connection may not be ready yet.
[ "Initialize", "the", "helper", "object", "on", "the", "current", "connection", "at", "invocation", "time", ".", "Do", "not", "initialize", "on", "construction", "since", "the", "connection", "may", "not", "be", "ready", "yet", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/connection/helpers/MoRefHandler.java#L156-L161
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/utils/InputsProcessor.java
InputsProcessor.init
public static void init(SQLInputs sqlInputs) throws Exception { if (sqlInputs != null) { sqlInputs.setStrDelim(","); sqlInputs.setStrColumns(""); sqlInputs.setLRows(new ArrayList<String>()); sqlInputs.setIUpdateCount(0); sqlInputs.setSqlCommand(n...
java
public static void init(SQLInputs sqlInputs) throws Exception { if (sqlInputs != null) { sqlInputs.setStrDelim(","); sqlInputs.setStrColumns(""); sqlInputs.setLRows(new ArrayList<String>()); sqlInputs.setIUpdateCount(0); sqlInputs.setSqlCommand(n...
[ "public", "static", "void", "init", "(", "SQLInputs", "sqlInputs", ")", "throws", "Exception", "{", "if", "(", "sqlInputs", "!=", "null", ")", "{", "sqlInputs", ".", "setStrDelim", "(", "\",\"", ")", ";", "sqlInputs", ".", "setStrColumns", "(", "\"\"", ")"...
init all the non-static variables. @param sqlInputs
[ "init", "all", "the", "non", "-", "static", "variables", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/utils/InputsProcessor.java#L33-L61
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/PooledDataSourceCleaner.java
PooledDataSourceCleaner.run
public void run() { // todo if (logger.isDebugEnabled()) { // logger.debug("start running PooledDataSourceCleaner"); // } state = STATE_CLEANER.RUNNING; while (state != STATE_CLEANER.SHUTDOWN) { try { Thread.sleep(interval * 1000); } catch...
java
public void run() { // todo if (logger.isDebugEnabled()) { // logger.debug("start running PooledDataSourceCleaner"); // } state = STATE_CLEANER.RUNNING; while (state != STATE_CLEANER.SHUTDOWN) { try { Thread.sleep(interval * 1000); } catch...
[ "public", "void", "run", "(", ")", "{", "// todo if (logger.isDebugEnabled()) {", "// logger.debug(\"start running PooledDataSourceCleaner\");", "// }", "state", "=", "STATE_CLEANER", ".", "RUNNING", ";", "while", "(", "state", "!=", "STATE_CLEANER", "...
wake up and clean the pools if the pool has empty connection table.
[ "wake", "up", "and", "clean", "the", "pools", "if", "the", "pool", "has", "empty", "connection", "table", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/PooledDataSourceCleaner.java#L51-L77
train
CloudSlang/cs-actions
cs-lists/src/main/java/io/cloudslang/content/utils/ListProcessor.java
ListProcessor.arrayElementsAreNull
public static boolean arrayElementsAreNull(String[] uncontainedArray) { boolean empty = true; for (Object ob : uncontainedArray) { if (ob != null) { empty = false; break; } } return empty; }
java
public static boolean arrayElementsAreNull(String[] uncontainedArray) { boolean empty = true; for (Object ob : uncontainedArray) { if (ob != null) { empty = false; break; } } return empty; }
[ "public", "static", "boolean", "arrayElementsAreNull", "(", "String", "[", "]", "uncontainedArray", ")", "{", "boolean", "empty", "=", "true", ";", "for", "(", "Object", "ob", ":", "uncontainedArray", ")", "{", "if", "(", "ob", "!=", "null", ")", "{", "e...
This method check if all elements of an array are null. @param uncontainedArray element in array @return any element that is found to be empty
[ "This", "method", "check", "if", "all", "elements", "of", "an", "array", "are", "null", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-lists/src/main/java/io/cloudslang/content/utils/ListProcessor.java#L299-L308
train
CloudSlang/cs-actions
cs-amazon/src/main/java/io/cloudslang/content/amazon/services/helpers/AwsSignatureHelper.java
AwsSignatureHelper.getSignedHeadersString
public String getSignedHeadersString(Map<String, String> headers) { List<String> sortedList = new ArrayList<>(headers.keySet()); Collections.sort(sortedList, String.CASE_INSENSITIVE_ORDER); StringBuilder signedHeaderString = new StringBuilder(); for (String header : sortedList) { ...
java
public String getSignedHeadersString(Map<String, String> headers) { List<String> sortedList = new ArrayList<>(headers.keySet()); Collections.sort(sortedList, String.CASE_INSENSITIVE_ORDER); StringBuilder signedHeaderString = new StringBuilder(); for (String header : sortedList) { ...
[ "public", "String", "getSignedHeadersString", "(", "Map", "<", "String", ",", "String", ">", "headers", ")", "{", "List", "<", "String", ">", "sortedList", "=", "new", "ArrayList", "<>", "(", "headers", ".", "keySet", "(", ")", ")", ";", "Collections", "...
Creates a comma separated list of headers. @param headers Headers to be signed. @return Comma separated list of headers to be signed.
[ "Creates", "a", "comma", "separated", "list", "of", "headers", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-amazon/src/main/java/io/cloudslang/content/amazon/services/helpers/AwsSignatureHelper.java#L111-L123
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/utils/TripleDES.java
TripleDES.encryptPassword
public static String encryptPassword(@NotNull final String aPlainPass) throws Exception { byte[] encBytes = encryptString(aPlainPass.getBytes(DEFAULT_CODEPAGE)); return Base64.encodeBase64String(encBytes); }
java
public static String encryptPassword(@NotNull final String aPlainPass) throws Exception { byte[] encBytes = encryptString(aPlainPass.getBytes(DEFAULT_CODEPAGE)); return Base64.encodeBase64String(encBytes); }
[ "public", "static", "String", "encryptPassword", "(", "@", "NotNull", "final", "String", "aPlainPass", ")", "throws", "Exception", "{", "byte", "[", "]", "encBytes", "=", "encryptString", "(", "aPlainPass", ".", "getBytes", "(", "DEFAULT_CODEPAGE", ")", ")", "...
encrypt a plain password @param aPlainPass a password in plain text @return an encrypted password @throws Exception
[ "encrypt", "a", "plain", "password" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/utils/TripleDES.java#L45-L48
train
CloudSlang/cs-actions
cs-xml/src/main/java/io/cloudslang/content/xml/utils/DocumentUtils.java
DocumentUtils.documentToString
public static String documentToString(Document xmlDocument) throws IOException { String encoding = (xmlDocument.getXmlEncoding() == null) ? "UTF-8" : xmlDocument.getXmlEncoding(); OutputFormat format = new OutputFormat(xmlDocument); format.setLineWidth(65); format.setIndenting(true); ...
java
public static String documentToString(Document xmlDocument) throws IOException { String encoding = (xmlDocument.getXmlEncoding() == null) ? "UTF-8" : xmlDocument.getXmlEncoding(); OutputFormat format = new OutputFormat(xmlDocument); format.setLineWidth(65); format.setIndenting(true); ...
[ "public", "static", "String", "documentToString", "(", "Document", "xmlDocument", ")", "throws", "IOException", "{", "String", "encoding", "=", "(", "xmlDocument", ".", "getXmlEncoding", "(", ")", "==", "null", ")", "?", "\"UTF-8\"", ":", "xmlDocument", ".", "...
Returns a String representation for the XML Document. @param xmlDocument the XML Document @return String representation for the XML Document @throws IOException
[ "Returns", "a", "String", "representation", "for", "the", "XML", "Document", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-xml/src/main/java/io/cloudslang/content/xml/utils/DocumentUtils.java#L38-L50
train
CloudSlang/cs-actions
cs-xml/src/main/java/io/cloudslang/content/xml/services/ApplyXslTransformationService.java
ApplyXslTransformationService.readSource
private Source readSource(String xmlDocument, String features) throws Exception { if (xmlDocument.startsWith(Constants.Inputs.HTTP_PREFIX_STRING) || xmlDocument.startsWith(Constants.Inputs.HTTPS_PREFIX_STRING)) { URL xmlUrl = new URL(xmlDocument); InputStream xmlStream = xmlUrl.openStrea...
java
private Source readSource(String xmlDocument, String features) throws Exception { if (xmlDocument.startsWith(Constants.Inputs.HTTP_PREFIX_STRING) || xmlDocument.startsWith(Constants.Inputs.HTTPS_PREFIX_STRING)) { URL xmlUrl = new URL(xmlDocument); InputStream xmlStream = xmlUrl.openStrea...
[ "private", "Source", "readSource", "(", "String", "xmlDocument", ",", "String", "features", ")", "throws", "Exception", "{", "if", "(", "xmlDocument", ".", "startsWith", "(", "Constants", ".", "Inputs", ".", "HTTP_PREFIX_STRING", ")", "||", "xmlDocument", ".", ...
Reads the xml content from a file, URL or string. @param xmlDocument xml document as String, path or URL @return the resulting xml after validation @throws Exception in case something went wrong
[ "Reads", "the", "xml", "content", "from", "a", "file", "URL", "or", "string", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-xml/src/main/java/io/cloudslang/content/xml/services/ApplyXslTransformationService.java#L74-L89
train
CloudSlang/cs-actions
cs-date-time/src/main/java/io/cloudslang/content/datetime/utils/DateTimeUtils.java
DateTimeUtils.isDateValid
public static boolean isDateValid(String date, Locale locale) { try { DateFormat format = DateFormat.getDateTimeInstance(DateFormat.DEFAULT, DateFormat.DEFAULT, locale); format.parse(date); return true; } catch (ParseException e) { return false; ...
java
public static boolean isDateValid(String date, Locale locale) { try { DateFormat format = DateFormat.getDateTimeInstance(DateFormat.DEFAULT, DateFormat.DEFAULT, locale); format.parse(date); return true; } catch (ParseException e) { return false; ...
[ "public", "static", "boolean", "isDateValid", "(", "String", "date", ",", "Locale", "locale", ")", "{", "try", "{", "DateFormat", "format", "=", "DateFormat", ".", "getDateTimeInstance", "(", "DateFormat", ".", "DEFAULT", ",", "DateFormat", ".", "DEFAULT", ","...
Because the date passed as argument can be in java format, and because not all formats are compatible with joda-time, this method checks if the date string is valid with java. In this way we can use the proper DateTime without changing the output. @param date date passed as argument @return true if is a java date
[ "Because", "the", "date", "passed", "as", "argument", "can", "be", "in", "java", "format", "and", "because", "not", "all", "formats", "are", "compatible", "with", "joda", "-", "time", "this", "method", "checks", "if", "the", "date", "string", "is", "valid"...
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-date-time/src/main/java/io/cloudslang/content/datetime/utils/DateTimeUtils.java#L51-L59
train
CloudSlang/cs-actions
cs-date-time/src/main/java/io/cloudslang/content/datetime/utils/DateTimeUtils.java
DateTimeUtils.getLocaleByCountry
public static Locale getLocaleByCountry(String lang, String country) { return StringUtils.isNotBlank(country) ? new Locale(lang, country) : new Locale(lang); }
java
public static Locale getLocaleByCountry(String lang, String country) { return StringUtils.isNotBlank(country) ? new Locale(lang, country) : new Locale(lang); }
[ "public", "static", "Locale", "getLocaleByCountry", "(", "String", "lang", ",", "String", "country", ")", "{", "return", "StringUtils", ".", "isNotBlank", "(", "country", ")", "?", "new", "Locale", "(", "lang", ",", "country", ")", ":", "new", "Locale", "(...
Generates the locale @param lang the language @param country the country @return the locale
[ "Generates", "the", "locale" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-date-time/src/main/java/io/cloudslang/content/datetime/utils/DateTimeUtils.java#L68-L70
train
CloudSlang/cs-actions
cs-date-time/src/main/java/io/cloudslang/content/datetime/utils/DateTimeUtils.java
DateTimeUtils.getJodaOrJavaDate
public static DateTime getJodaOrJavaDate(final DateTimeFormatter dateFormatter, final String date) throws Exception { if (DateTimeUtils.isDateValid(date, dateFormatter.getLocale())) { DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.DEFAULT, DateFormat.DEFAULT, dateFormatter.getLo...
java
public static DateTime getJodaOrJavaDate(final DateTimeFormatter dateFormatter, final String date) throws Exception { if (DateTimeUtils.isDateValid(date, dateFormatter.getLocale())) { DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.DEFAULT, DateFormat.DEFAULT, dateFormatter.getLo...
[ "public", "static", "DateTime", "getJodaOrJavaDate", "(", "final", "DateTimeFormatter", "dateFormatter", ",", "final", "String", "date", ")", "throws", "Exception", "{", "if", "(", "DateTimeUtils", ".", "isDateValid", "(", "date", ",", "dateFormatter", ".", "getLo...
Returns a LocalDateTime depending on how the date passes as argument is formatted. @param date date passed as argument @return the DateTime if it could parse it
[ "Returns", "a", "LocalDateTime", "depending", "on", "how", "the", "date", "passes", "as", "argument", "is", "formatted", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-date-time/src/main/java/io/cloudslang/content/datetime/utils/DateTimeUtils.java#L78-L89
train
CloudSlang/cs-actions
cs-date-time/src/main/java/io/cloudslang/content/datetime/utils/DateTimeUtils.java
DateTimeUtils.getDateFormatter
public static DateTimeFormatter getDateFormatter(String format, String lang, String country) { if (StringUtils.isNotBlank(format)) { DateTimeFormatter dateFormat = DateTimeFormat.forPattern(format); if (StringUtils.isNotBlank(lang)) { return dateFormat.withLocale(Date...
java
public static DateTimeFormatter getDateFormatter(String format, String lang, String country) { if (StringUtils.isNotBlank(format)) { DateTimeFormatter dateFormat = DateTimeFormat.forPattern(format); if (StringUtils.isNotBlank(lang)) { return dateFormat.withLocale(Date...
[ "public", "static", "DateTimeFormatter", "getDateFormatter", "(", "String", "format", ",", "String", "lang", ",", "String", "country", ")", "{", "if", "(", "StringUtils", ".", "isNotBlank", "(", "format", ")", ")", "{", "DateTimeFormatter", "dateFormat", "=", ...
Generates a DateTimeFormatter using a custom pattern with the default locale or a new one according to what language and country are provided as params. @param format the pattern @param lang the language @param country the country @return the DateTimeFormatter generated
[ "Generates", "a", "DateTimeFormatter", "using", "a", "custom", "pattern", "with", "the", "default", "locale", "or", "a", "new", "one", "according", "to", "what", "language", "and", "country", "are", "provided", "as", "params", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-date-time/src/main/java/io/cloudslang/content/datetime/utils/DateTimeUtils.java#L101-L110
train
CloudSlang/cs-actions
cs-date-time/src/main/java/io/cloudslang/content/datetime/utils/DateTimeUtils.java
DateTimeUtils.formatWithDefault
public static DateTimeFormatter formatWithDefault(String lang, String country) { return (StringUtils.isNotBlank(lang)) ? DateTimeFormat.longDateTime().withLocale(DateTimeUtils.getLocaleByCountry(lang, country)) : DateTimeFormat.longDateTime().withLocale(Locale.getDefault()); }
java
public static DateTimeFormatter formatWithDefault(String lang, String country) { return (StringUtils.isNotBlank(lang)) ? DateTimeFormat.longDateTime().withLocale(DateTimeUtils.getLocaleByCountry(lang, country)) : DateTimeFormat.longDateTime().withLocale(Locale.getDefault()); }
[ "public", "static", "DateTimeFormatter", "formatWithDefault", "(", "String", "lang", ",", "String", "country", ")", "{", "return", "(", "StringUtils", ".", "isNotBlank", "(", "lang", ")", ")", "?", "DateTimeFormat", ".", "longDateTime", "(", ")", ".", "withLoc...
Generates a DateTimeFormatter using full date pattern with the default locale or a new one according to what language and country are provided as params. @param lang the language @param country the country @return the DateTimeFormatter generated
[ "Generates", "a", "DateTimeFormatter", "using", "full", "date", "pattern", "with", "the", "default", "locale", "or", "a", "new", "one", "according", "to", "what", "language", "and", "country", "are", "provided", "as", "params", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-date-time/src/main/java/io/cloudslang/content/datetime/utils/DateTimeUtils.java#L120-L123
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/services/SQLQueryTabularService.java
SQLQueryTabularService.execSqlQueryTabular
public static String execSqlQueryTabular(@NotNull final SQLInputs sqlInputs) throws Exception { ConnectionService connectionService = new ConnectionService(); try (final Connection connection = connectionService.setUpConnection(sqlInputs)){ connection.setReadOnly(true); fin...
java
public static String execSqlQueryTabular(@NotNull final SQLInputs sqlInputs) throws Exception { ConnectionService connectionService = new ConnectionService(); try (final Connection connection = connectionService.setUpConnection(sqlInputs)){ connection.setReadOnly(true); fin...
[ "public", "static", "String", "execSqlQueryTabular", "(", "@", "NotNull", "final", "SQLInputs", "sqlInputs", ")", "throws", "Exception", "{", "ConnectionService", "connectionService", "=", "new", "ConnectionService", "(", ")", ";", "try", "(", "final", "Connection",...
Run a SQL query with given configuration @return the formatted result set by colDelimiter and rowDelimiter @throws ClassNotFoundException @throws java.sql.SQLException
[ "Run", "a", "SQL", "query", "with", "given", "configuration" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/services/SQLQueryTabularService.java#L40-L54
train
CloudSlang/cs-actions
cs-xml/src/main/java/io/cloudslang/content/xml/actions/XpathQuery.java
XpathQuery.execute
@Action(name = "XpathQuery", outputs = { @Output(RETURN_CODE), @Output(RETURN_RESULT), @Output(SELECTED_VALUE), @Output(ERROR_MESSAGE)}, responses = { @Response(text = ResponseNames.SUCCESS, field...
java
@Action(name = "XpathQuery", outputs = { @Output(RETURN_CODE), @Output(RETURN_RESULT), @Output(SELECTED_VALUE), @Output(ERROR_MESSAGE)}, responses = { @Response(text = ResponseNames.SUCCESS, field...
[ "@", "Action", "(", "name", "=", "\"XpathQuery\"", ",", "outputs", "=", "{", "@", "Output", "(", "RETURN_CODE", ")", ",", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", "SELECTED_VALUE", ")", ",", "@", "Output", "(", "ERROR_MESSAGE", ...
Selects from an XML document using an XPATH query. @param xmlDocument XML string or path to xml file @param xmlDocumentSource The source type of the xml document. Valid values: xmlString, xmlPath Default value: xmlString @param xPathQuery XPATH query @param queryType type of selection result from ...
[ "Selects", "from", "an", "XML", "document", "using", "an", "XPATH", "query", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-xml/src/main/java/io/cloudslang/content/xml/actions/XpathQuery.java#L42-L72
train
CloudSlang/cs-actions
cs-xml/src/main/java/io/cloudslang/content/xml/actions/ConvertJsonToXml.java
ConvertJsonToXml.execute
@Action(name = "Convert JSON to XML", outputs = { @Output(RETURN_RESULT), @Output(RETURN_CODE) }, responses = { @Response(text = ResponseNames.SUCCESS, field = RETURN_CODE, value = SUCCESS), @Response(tex...
java
@Action(name = "Convert JSON to XML", outputs = { @Output(RETURN_RESULT), @Output(RETURN_CODE) }, responses = { @Response(text = ResponseNames.SUCCESS, field = RETURN_CODE, value = SUCCESS), @Response(tex...
[ "@", "Action", "(", "name", "=", "\"Convert JSON to XML\"", ",", "outputs", "=", "{", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", "RETURN_CODE", ")", "}", ",", "responses", "=", "{", "@", "Response", "(", "text", "=", "ResponseName...
Converts a JSON array or a JSON object to a XML document. @param json - The JSON array or object (in the form of a String). @param prettyPrint - The flag for formatting the resulted XML. If it is true the result will contain tabs and newline ('\n') chars. Default value: true Valid valu...
[ "Converts", "a", "JSON", "array", "or", "a", "JSON", "object", "to", "a", "XML", "document", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-xml/src/main/java/io/cloudslang/content/xml/actions/ConvertJsonToXml.java#L62-L108
train
CloudSlang/cs-actions
cs-postgres/src/main/java/io/cloudslang/content/postgres/actions/UpdatePgHbaConfigAction.java
UpdatePgHbaConfigAction.execute
@Action(name = "Update pg_hba.config", outputs = { @Output(RETURN_CODE), @Output(RETURN_RESULT), @Output(EXCEPTION), @Output(STDERR) }, responses = { @Response(text = ResponseNames.SUC...
java
@Action(name = "Update pg_hba.config", outputs = { @Output(RETURN_CODE), @Output(RETURN_RESULT), @Output(EXCEPTION), @Output(STDERR) }, responses = { @Response(text = ResponseNames.SUC...
[ "@", "Action", "(", "name", "=", "\"Update pg_hba.config\"", ",", "outputs", "=", "{", "@", "Output", "(", "RETURN_CODE", ")", ",", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", "EXCEPTION", ")", ",", "@", "Output", "(", "STDERR", ...
Updates the Postgres config pg_hba.config @param installationPath The full path to the PostgreSQL configuration file in the local machine to be updated. @param allowedHosts A wildcard or a comma-separated list of hostnames or IPs (IPv4 or IPv6). @param allowedUsers A comma-separated list of PostgreSQL users. I...
[ "Updates", "the", "Postgres", "config", "pg_hba", ".", "config" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-postgres/src/main/java/io/cloudslang/content/postgres/actions/UpdatePgHbaConfigAction.java#L49-L91
train
CloudSlang/cs-actions
cs-tesseract/src/main/java/io/cloudslang/content/tesseract/actions/ExtractTextFromImage.java
ExtractTextFromImage.execute
@Action(name = "Extract text from image", description = EXTRACT_TEXT_FROM_IMAGE_DESC, outputs = { @Output(value = RETURN_CODE, description = RETURN_CODE_DESC), @Output(value = RETURN_RESULT, description = RETURN_RESULT_DESC), @Output(va...
java
@Action(name = "Extract text from image", description = EXTRACT_TEXT_FROM_IMAGE_DESC, outputs = { @Output(value = RETURN_CODE, description = RETURN_CODE_DESC), @Output(value = RETURN_RESULT, description = RETURN_RESULT_DESC), @Output(va...
[ "@", "Action", "(", "name", "=", "\"Extract text from image\"", ",", "description", "=", "EXTRACT_TEXT_FROM_IMAGE_DESC", ",", "outputs", "=", "{", "@", "Output", "(", "value", "=", "RETURN_CODE", ",", "description", "=", "RETURN_CODE_DESC", ")", ",", "@", "Outpu...
This operation extracts the text from a specified file given as input using Tesseract's OCR library. @param filePath The path of the file to be extracted. The file must be an image. Most of the common image formats are supported. Required @param dataPath The path to the tessdata folder that contains the tesseract ...
[ "This", "operation", "extracts", "the", "text", "from", "a", "specified", "file", "given", "as", "input", "using", "Tesseract", "s", "OCR", "library", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-tesseract/src/main/java/io/cloudslang/content/tesseract/actions/ExtractTextFromImage.java#L81-L124
train
CloudSlang/cs-actions
cs-powershell/src/main/java/io/cloudslang/content/utils/WSManUtils.java
WSManUtils.isUUID
public static boolean isUUID(String string) { try { if (string != null) { UUID.fromString(string); return true; } else { return false; } } catch (IllegalArgumentException ex) { return false; } }
java
public static boolean isUUID(String string) { try { if (string != null) { UUID.fromString(string); return true; } else { return false; } } catch (IllegalArgumentException ex) { return false; } }
[ "public", "static", "boolean", "isUUID", "(", "String", "string", ")", "{", "try", "{", "if", "(", "string", "!=", "null", ")", "{", "UUID", ".", "fromString", "(", "string", ")", ";", "return", "true", ";", "}", "else", "{", "return", "false", ";", ...
Checks if a string is a valid UUID or not. @param string The UUID value. @return true if input is a valid UUID or false if input is empty or an invalid UUID format.
[ "Checks", "if", "a", "string", "is", "a", "valid", "UUID", "or", "not", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-powershell/src/main/java/io/cloudslang/content/utils/WSManUtils.java#L98-L109
train
CloudSlang/cs-actions
cs-powershell/src/main/java/io/cloudslang/content/utils/WSManUtils.java
WSManUtils.validateUUID
public static void validateUUID(String uuid, String uuidValueOf) throws RuntimeException { if (!WSManUtils.isUUID(uuid)) { throw new RuntimeException("The returned " + uuidValueOf + " is not a valid UUID value! " + uuidValueOf + ": " + uuid); } }
java
public static void validateUUID(String uuid, String uuidValueOf) throws RuntimeException { if (!WSManUtils.isUUID(uuid)) { throw new RuntimeException("The returned " + uuidValueOf + " is not a valid UUID value! " + uuidValueOf + ": " + uuid); } }
[ "public", "static", "void", "validateUUID", "(", "String", "uuid", ",", "String", "uuidValueOf", ")", "throws", "RuntimeException", "{", "if", "(", "!", "WSManUtils", ".", "isUUID", "(", "uuid", ")", ")", "{", "throw", "new", "RuntimeException", "(", "\"The ...
Validates a UUID value and throws a specific exception if UUID is invalid. @param uuid The UUID value to validate. @param uuidValueOf The property associated to the given UUID value. @throws RuntimeException
[ "Validates", "a", "UUID", "value", "and", "throws", "a", "specific", "exception", "if", "UUID", "is", "invalid", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-powershell/src/main/java/io/cloudslang/content/utils/WSManUtils.java#L118-L122
train
CloudSlang/cs-actions
cs-powershell/src/main/java/io/cloudslang/content/utils/WSManUtils.java
WSManUtils.verifyScriptExecutionStatus
public static void verifyScriptExecutionStatus(final Map<String, String> resultMap) { if (ZERO_SCRIPT_EXIT_CODE.equals(resultMap.get(SCRIPT_EXIT_CODE))) { resultMap.put(RETURN_CODE, RETURN_CODE_SUCCESS); } else { resultMap.put(RETURN_CODE, RETURN_CODE_FAILURE); } }
java
public static void verifyScriptExecutionStatus(final Map<String, String> resultMap) { if (ZERO_SCRIPT_EXIT_CODE.equals(resultMap.get(SCRIPT_EXIT_CODE))) { resultMap.put(RETURN_CODE, RETURN_CODE_SUCCESS); } else { resultMap.put(RETURN_CODE, RETURN_CODE_FAILURE); } }
[ "public", "static", "void", "verifyScriptExecutionStatus", "(", "final", "Map", "<", "String", ",", "String", ">", "resultMap", ")", "{", "if", "(", "ZERO_SCRIPT_EXIT_CODE", ".", "equals", "(", "resultMap", ".", "get", "(", "SCRIPT_EXIT_CODE", ")", ")", ")", ...
Checks the scriptExitCode value of the script execution and fails the operation if exit code is different than zero. @param resultMap
[ "Checks", "the", "scriptExitCode", "value", "of", "the", "script", "execution", "and", "fails", "the", "operation", "if", "exit", "code", "is", "different", "than", "zero", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-powershell/src/main/java/io/cloudslang/content/utils/WSManUtils.java#L162-L168
train
CloudSlang/cs-actions
cs-date-time/src/main/java/io/cloudslang/content/datetime/actions/OffsetTimeBy.java
OffsetTimeBy.execute
@Action(name = "Offset Time By", description = "Changes the time represented by a date by the specified number of seconds", outputs = { @Output(RETURN_RESULT), @Output(RETURN_CODE), @Output(EXCEPTION) }, response...
java
@Action(name = "Offset Time By", description = "Changes the time represented by a date by the specified number of seconds", outputs = { @Output(RETURN_RESULT), @Output(RETURN_CODE), @Output(EXCEPTION) }, response...
[ "@", "Action", "(", "name", "=", "\"Offset Time By\"", ",", "description", "=", "\"Changes the time represented by a date by the specified number of seconds\"", ",", "outputs", "=", "{", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", "RETURN_CODE", ...
Changes the time represented by a date by the specified number of seconds. If locale is specified, it will return the date and time string based on the locale. Otherwise, default locale will be used. @param date Current time. @param offset The offset value specified number of seconds. @param localeLang...
[ "Changes", "the", "time", "represented", "by", "a", "date", "by", "the", "specified", "number", "of", "seconds", ".", "If", "locale", "is", "specified", "it", "will", "return", "the", "date", "and", "time", "string", "based", "on", "the", "locale", ".", ...
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-date-time/src/main/java/io/cloudslang/content/datetime/actions/OffsetTimeBy.java#L62-L83
train
CloudSlang/cs-actions
cs-amazon/src/main/java/io/cloudslang/content/amazon/actions/cloudformation/ListStacksAction.java
ListStacksAction.execute
@Action(name = "List AWS Cloud Formation stacks", outputs = { @Output(Outputs.RETURN_CODE), @Output(Outputs.RETURN_RESULT), @Output(Outputs.EXCEPTION) }, responses = { @Response(text = Outputs.SUCC...
java
@Action(name = "List AWS Cloud Formation stacks", outputs = { @Output(Outputs.RETURN_CODE), @Output(Outputs.RETURN_RESULT), @Output(Outputs.EXCEPTION) }, responses = { @Response(text = Outputs.SUCC...
[ "@", "Action", "(", "name", "=", "\"List AWS Cloud Formation stacks\"", ",", "outputs", "=", "{", "@", "Output", "(", "Outputs", ".", "RETURN_CODE", ")", ",", "@", "Output", "(", "Outputs", ".", "RETURN_RESULT", ")", ",", "@", "Output", "(", "Outputs", "."...
List AWS Cloud Formation Stacks @param identity Access key associated with your Amazon AWS or IAM account. Example: "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY" @param credential Secret access key ID associated with your Amazon AWS or IAM account. @param proxyHost Optional - proxy server used to connect to A...
[ "List", "AWS", "Cloud", "Formation", "Stacks" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-amazon/src/main/java/io/cloudslang/content/amazon/actions/cloudformation/ListStacksAction.java#L61-L106
train
CloudSlang/cs-actions
cs-lists/src/main/java/io/cloudslang/content/actions/ListSizeAction.java
ListSizeAction.getListSize
@Action(name = "List Size", outputs = { @Output(RESULT_TEXT), @Output(RESPONSE), @Output(RETURN_RESULT), @Output(RETURN_CODE) }, responses = { @Response(text = Constants.ResponseNames....
java
@Action(name = "List Size", outputs = { @Output(RESULT_TEXT), @Output(RESPONSE), @Output(RETURN_RESULT), @Output(RETURN_CODE) }, responses = { @Response(text = Constants.ResponseNames....
[ "@", "Action", "(", "name", "=", "\"List Size\"", ",", "outputs", "=", "{", "@", "Output", "(", "RESULT_TEXT", ")", ",", "@", "Output", "(", "RESPONSE", ")", ",", "@", "Output", "(", "RETURN_RESULT", ")", ",", "@", "Output", "(", "RETURN_CODE", ")", ...
This method returns the length of a list of strings. @param list The list to be processed. @param delimiter The list delimiter. @return The length of the list.
[ "This", "method", "returns", "the", "length", "of", "a", "list", "of", "strings", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-lists/src/main/java/io/cloudslang/content/actions/ListSizeAction.java#L53-L80
train
CloudSlang/cs-actions
cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/PooledDataSourceProvider.java
PooledDataSourceProvider.getPropStringValue
protected String getPropStringValue(String aPropName, String aDefaultValue) { return dbPoolingProperties.getProperty(aPropName, aDefaultValue); }
java
protected String getPropStringValue(String aPropName, String aDefaultValue) { return dbPoolingProperties.getProperty(aPropName, aDefaultValue); }
[ "protected", "String", "getPropStringValue", "(", "String", "aPropName", ",", "String", "aDefaultValue", ")", "{", "return", "dbPoolingProperties", ".", "getProperty", "(", "aPropName", ",", "aDefaultValue", ")", ";", "}" ]
get string value based on the property name from property file the property file is databasePooling.properties @param aPropName a property name @param aDefaultValue a default value for that property, if the property is not there. @return string value of that property
[ "get", "string", "value", "based", "on", "the", "property", "name", "from", "property", "file", "the", "property", "file", "is", "databasePooling", ".", "properties" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-database/src/main/java/io/cloudslang/content/database/services/dbconnection/PooledDataSourceProvider.java#L171-L174
train
CloudSlang/cs-actions
cs-amazon/src/main/java/io/cloudslang/content/amazon/services/helpers/AwsSignatureV4.java
AwsSignatureV4.getStringToSign
public String getStringToSign(String requestDate, String credentialScope, String canonicalRequest) throws SignatureException { try { return AWS4_SIGNING_ALGORITHM + LINE_SEPARATOR + requestDate + LINE_SEPARATOR + credentialScope + LINE_SEPARATOR + new String(Hex.encode(calculateH...
java
public String getStringToSign(String requestDate, String credentialScope, String canonicalRequest) throws SignatureException { try { return AWS4_SIGNING_ALGORITHM + LINE_SEPARATOR + requestDate + LINE_SEPARATOR + credentialScope + LINE_SEPARATOR + new String(Hex.encode(calculateH...
[ "public", "String", "getStringToSign", "(", "String", "requestDate", ",", "String", "credentialScope", ",", "String", "canonicalRequest", ")", "throws", "SignatureException", "{", "try", "{", "return", "AWS4_SIGNING_ALGORITHM", "+", "LINE_SEPARATOR", "+", "requestDate",...
Combines the inputs into a string with a fixed structure and calculates the canonical request digest. This string can be used with the derived signing key to create an AWS signature. @param requestDate Request date in YYYYMMDD'T'HHMMSS'Z' format. @param credentialScope Request credential scope. @param canonicalR...
[ "Combines", "the", "inputs", "into", "a", "string", "with", "a", "fixed", "structure", "and", "calculates", "the", "canonical", "request", "digest", ".", "This", "string", "can", "be", "used", "with", "the", "derived", "signing", "key", "to", "create", "an",...
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-amazon/src/main/java/io/cloudslang/content/amazon/services/helpers/AwsSignatureV4.java#L81-L88
train
CloudSlang/cs-actions
cs-amazon/src/main/java/io/cloudslang/content/amazon/services/helpers/AwsSignatureV4.java
AwsSignatureV4.getDerivedSigningKey
public byte[] getDerivedSigningKey(String secretAccessKey, String dateStamp, String region, String amazonApi) throws SignatureException { try { byte[] kSecret = (AWS_SIGNATURE_VERSION + secretAccessKey).getBytes(ENCODING); byte[] kDate = calculateHmacSHA256(dateStamp, kSecret...
java
public byte[] getDerivedSigningKey(String secretAccessKey, String dateStamp, String region, String amazonApi) throws SignatureException { try { byte[] kSecret = (AWS_SIGNATURE_VERSION + secretAccessKey).getBytes(ENCODING); byte[] kDate = calculateHmacSHA256(dateStamp, kSecret...
[ "public", "byte", "[", "]", "getDerivedSigningKey", "(", "String", "secretAccessKey", ",", "String", "dateStamp", ",", "String", "region", ",", "String", "amazonApi", ")", "throws", "SignatureException", "{", "try", "{", "byte", "[", "]", "kSecret", "=", "(", ...
Derives a signing key from the AWS secret access key. @param secretAccessKey Amazon secret a access key. @param dateStamp Credential scope date stamp in "yyyyMMdd" format. @param region Amazon region name. @param amazonApi Amazon service name. @return Signing key's bytes. This result is not encode...
[ "Derives", "a", "signing", "key", "from", "the", "AWS", "secret", "access", "key", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-amazon/src/main/java/io/cloudslang/content/amazon/services/helpers/AwsSignatureV4.java#L99-L111
train
CloudSlang/cs-actions
cs-amazon/src/main/java/io/cloudslang/content/amazon/services/helpers/AwsSignatureV4.java
AwsSignatureV4.calculateHmacSHA256
private byte[] calculateHmacSHA256(String data, byte[] key) throws NoSuchAlgorithmException, InvalidKeyException, UnsupportedEncodingException { Mac mac = Mac.getInstance(HMAC_ALGORITHM); mac.init(new SecretKeySpec(key, HMAC_ALGORITHM)); return mac.doFinal(data.getBytes(ENCODING)); ...
java
private byte[] calculateHmacSHA256(String data, byte[] key) throws NoSuchAlgorithmException, InvalidKeyException, UnsupportedEncodingException { Mac mac = Mac.getInstance(HMAC_ALGORITHM); mac.init(new SecretKeySpec(key, HMAC_ALGORITHM)); return mac.doFinal(data.getBytes(ENCODING)); ...
[ "private", "byte", "[", "]", "calculateHmacSHA256", "(", "String", "data", ",", "byte", "[", "]", "key", ")", "throws", "NoSuchAlgorithmException", ",", "InvalidKeyException", ",", "UnsupportedEncodingException", "{", "Mac", "mac", "=", "Mac", ".", "getInstance", ...
Calculates the keyed-hash message authentication code for the data string. @param data String for which the HMAC will be calculated. @param key Key used for HMAC calculation. @return HMAC's bytes. This result is not encoded.
[ "Calculates", "the", "keyed", "-", "hash", "message", "authentication", "code", "for", "the", "data", "string", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-amazon/src/main/java/io/cloudslang/content/amazon/services/helpers/AwsSignatureV4.java#L147-L152
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/services/VmService.java
VmService.getOsDescriptors
public Map<String, String> getOsDescriptors(HttpInputs httpInputs, VmInputs vmInputs, String delimiter) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { ManagedObjectReference environmentBrowserMor = new MorObjectHandler() ...
java
public Map<String, String> getOsDescriptors(HttpInputs httpInputs, VmInputs vmInputs, String delimiter) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { ManagedObjectReference environmentBrowserMor = new MorObjectHandler() ...
[ "public", "Map", "<", "String", ",", "String", ">", "getOsDescriptors", "(", "HttpInputs", "httpInputs", ",", "VmInputs", "vmInputs", ",", "String", "delimiter", ")", "throws", "Exception", "{", "ConnectionResources", "connectionResources", "=", "new", "ConnectionRe...
Method used to connect to data center to retrieve a list with all the guest operating system descriptors supported by the host system. @param httpInputs Object that has all the inputs necessary to made a connection to data center @param vmInputs Object that has all the specific inputs necessary to identify the targe...
[ "Method", "used", "to", "connect", "to", "data", "center", "to", "retrieve", "a", "list", "with", "all", "the", "guest", "operating", "system", "descriptors", "supported", "by", "the", "host", "system", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/services/VmService.java#L52-L72
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/services/VmService.java
VmService.createVM
public Map<String, String> createVM(HttpInputs httpInputs, VmInputs vmInputs) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { VmUtils utils = new VmUtils(); ManagedObjectReference vmFolderMor = utils.getMorFolder(v...
java
public Map<String, String> createVM(HttpInputs httpInputs, VmInputs vmInputs) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { VmUtils utils = new VmUtils(); ManagedObjectReference vmFolderMor = utils.getMorFolder(v...
[ "public", "Map", "<", "String", ",", "String", ">", "createVM", "(", "HttpInputs", "httpInputs", ",", "VmInputs", "vmInputs", ")", "throws", "Exception", "{", "ConnectionResources", "connectionResources", "=", "new", "ConnectionResources", "(", "httpInputs", ",", ...
Method used to connect to specified data center and create a virtual machine using the inputs provided. @param httpInputs Object that has all the inputs necessary to made a connection to data center @param vmInputs Object that has all the specific inputs necessary to create a new virtual machine @return Map with Str...
[ "Method", "used", "to", "connect", "to", "specified", "data", "center", "and", "create", "a", "virtual", "machine", "using", "the", "inputs", "provided", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/services/VmService.java#L83-L107
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/services/VmService.java
VmService.deleteVM
public Map<String, String> deleteVM(HttpInputs httpInputs, VmInputs vmInputs) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { ManagedObjectReference vmMor = new MorObjectHandler().getMor(connectionResources, ...
java
public Map<String, String> deleteVM(HttpInputs httpInputs, VmInputs vmInputs) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { ManagedObjectReference vmMor = new MorObjectHandler().getMor(connectionResources, ...
[ "public", "Map", "<", "String", ",", "String", ">", "deleteVM", "(", "HttpInputs", "httpInputs", ",", "VmInputs", "vmInputs", ")", "throws", "Exception", "{", "ConnectionResources", "connectionResources", "=", "new", "ConnectionResources", "(", "httpInputs", ",", ...
Method used to connect to specified data center and delete the virtual machine identified by the inputs provided. @param httpInputs Object that has all the inputs necessary to made a connection to data center @param vmInputs Object that has all the specific inputs necessary to identify the targeted virtual machine @...
[ "Method", "used", "to", "connect", "to", "specified", "data", "center", "and", "delete", "the", "virtual", "machine", "identified", "by", "the", "inputs", "provided", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/services/VmService.java#L118-L140
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/services/VmService.java
VmService.listVMsAndTemplates
public Map<String, String> listVMsAndTemplates(HttpInputs httpInputs, VmInputs vmInputs, String delimiter) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { Map<String, ManagedObjectReference> virtualMachinesMorMap = new MorObje...
java
public Map<String, String> listVMsAndTemplates(HttpInputs httpInputs, VmInputs vmInputs, String delimiter) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { Map<String, ManagedObjectReference> virtualMachinesMorMap = new MorObje...
[ "public", "Map", "<", "String", ",", "String", ">", "listVMsAndTemplates", "(", "HttpInputs", "httpInputs", ",", "VmInputs", "vmInputs", ",", "String", "delimiter", ")", "throws", "Exception", "{", "ConnectionResources", "connectionResources", "=", "new", "Connectio...
Method used to connect to data center to retrieve a list with all the virtual machines and templates within. @param httpInputs Object that has all the inputs necessary to made a connection to data center @param vmInputs Object that has all the specific inputs necessary to identify the targeted data center @param del...
[ "Method", "used", "to", "connect", "to", "data", "center", "to", "retrieve", "a", "list", "with", "all", "the", "virtual", "machines", "and", "templates", "within", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/services/VmService.java#L218-L239
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/services/VmService.java
VmService.getVMDetails
public Map<String, String> getVMDetails(HttpInputs httpInputs, VmInputs vmInputs) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { ManagedObjectReference vmMor = new MorObjectHandler().getMor(connectionResources, ...
java
public Map<String, String> getVMDetails(HttpInputs httpInputs, VmInputs vmInputs) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { ManagedObjectReference vmMor = new MorObjectHandler().getMor(connectionResources, ...
[ "public", "Map", "<", "String", ",", "String", ">", "getVMDetails", "(", "HttpInputs", "httpInputs", ",", "VmInputs", "vmInputs", ")", "throws", "Exception", "{", "ConnectionResources", "connectionResources", "=", "new", "ConnectionResources", "(", "httpInputs", ","...
Method used to connect to data center to retrieve details of a virtual machine identified by the inputs provided. @param httpInputs Object that has all the inputs necessary to made a connection to data center @param vmInputs Object that has all the specific inputs necessary to identify the targeted virtual machine @...
[ "Method", "used", "to", "connect", "to", "data", "center", "to", "retrieve", "details", "of", "a", "virtual", "machine", "identified", "by", "the", "inputs", "provided", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/services/VmService.java#L250-L283
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/services/VmService.java
VmService.updateVM
public Map<String, String> updateVM(HttpInputs httpInputs, VmInputs vmInputs) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { ManagedObjectReference vmMor = new MorObjectHandler().getMor(connectionResources, ...
java
public Map<String, String> updateVM(HttpInputs httpInputs, VmInputs vmInputs) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { ManagedObjectReference vmMor = new MorObjectHandler().getMor(connectionResources, ...
[ "public", "Map", "<", "String", ",", "String", ">", "updateVM", "(", "HttpInputs", "httpInputs", ",", "VmInputs", "vmInputs", ")", "throws", "Exception", "{", "ConnectionResources", "connectionResources", "=", "new", "ConnectionResources", "(", "httpInputs", ",", ...
Method used to connect to data center to update existing devices of a virtual machine identified by the inputs provided. @param httpInputs Object that has all the inputs necessary to made a connection to data center @param vmInputs Object that has all the specific inputs necessary to identify the targeted device @re...
[ "Method", "used", "to", "connect", "to", "data", "center", "to", "update", "existing", "devices", "of", "a", "virtual", "machine", "identified", "by", "the", "inputs", "provided", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/services/VmService.java#L295-L325
train
CloudSlang/cs-actions
cs-vmware/src/main/java/io/cloudslang/content/vmware/services/VmService.java
VmService.cloneVM
public Map<String, String> cloneVM(HttpInputs httpInputs, VmInputs vmInputs) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { ManagedObjectReference vmMor = new MorObjectHandler().getMor(connectionResources, ...
java
public Map<String, String> cloneVM(HttpInputs httpInputs, VmInputs vmInputs) throws Exception { ConnectionResources connectionResources = new ConnectionResources(httpInputs, vmInputs); try { ManagedObjectReference vmMor = new MorObjectHandler().getMor(connectionResources, ...
[ "public", "Map", "<", "String", ",", "String", ">", "cloneVM", "(", "HttpInputs", "httpInputs", ",", "VmInputs", "vmInputs", ")", "throws", "Exception", "{", "ConnectionResources", "connectionResources", "=", "new", "ConnectionResources", "(", "httpInputs", ",", "...
Method used to connect to data center and clone a virtual machine identified by the inputs provided. @param httpInputs Object that has all the inputs necessary to made a connection to data center @param vmInputs Object that has all the specific inputs necessary to identify the virtual machine that will be cloned @re...
[ "Method", "used", "to", "connect", "to", "data", "center", "and", "clone", "a", "virtual", "machine", "identified", "by", "the", "inputs", "provided", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-vmware/src/main/java/io/cloudslang/content/vmware/services/VmService.java#L337-L372
train
CloudSlang/cs-actions
cs-json/src/main/java/io/cloudslang/content/json/actions/MergeArrays.java
MergeArrays.execute
@Action(name = "Merge Arrays", outputs = { @Output(OutputNames.RETURN_RESULT), @Output(OutputNames.RETURN_CODE), @Output(OutputNames.EXCEPTION) }, responses = { @Response(text = ResponseNames.SUCCESS, fie...
java
@Action(name = "Merge Arrays", outputs = { @Output(OutputNames.RETURN_RESULT), @Output(OutputNames.RETURN_CODE), @Output(OutputNames.EXCEPTION) }, responses = { @Response(text = ResponseNames.SUCCESS, fie...
[ "@", "Action", "(", "name", "=", "\"Merge Arrays\"", ",", "outputs", "=", "{", "@", "Output", "(", "OutputNames", ".", "RETURN_RESULT", ")", ",", "@", "Output", "(", "OutputNames", ".", "RETURN_CODE", ")", ",", "@", "Output", "(", "OutputNames", ".", "EX...
This operation merge the contents of two JSON arrays. This operation does not modify either of the input arrays. The result is the contents or array1 and array2, merged into a single array. The merge operation add into the result the first array and then the second array. @param array1 The string representation of a J...
[ "This", "operation", "merge", "the", "contents", "of", "two", "JSON", "arrays", ".", "This", "operation", "does", "not", "modify", "either", "of", "the", "input", "arrays", ".", "The", "result", "is", "the", "contents", "or", "array1", "and", "array2", "me...
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-json/src/main/java/io/cloudslang/content/json/actions/MergeArrays.java#L72-L126
train
CloudSlang/cs-actions
cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java
WSManRemoteShellService.runCommand
public Map<String, String> runCommand(WSManRequestInputs wsManRequestInputs) throws RuntimeException, IOException, InterruptedException, ParserConfigurationException, TransformerException, XPathExpressionException, TimeoutException, URISyntaxException, SAXException { HttpClientService csHttpClient = new HttpCli...
java
public Map<String, String> runCommand(WSManRequestInputs wsManRequestInputs) throws RuntimeException, IOException, InterruptedException, ParserConfigurationException, TransformerException, XPathExpressionException, TimeoutException, URISyntaxException, SAXException { HttpClientService csHttpClient = new HttpCli...
[ "public", "Map", "<", "String", ",", "String", ">", "runCommand", "(", "WSManRequestInputs", "wsManRequestInputs", ")", "throws", "RuntimeException", ",", "IOException", ",", "InterruptedException", ",", "ParserConfigurationException", ",", "TransformerException", ",", ...
Executes a command on a remote shell by communicating with the WinRM server from the remote host. Method creates a shell, runs a command on the shell, waits for the command execution to finnish, retrieves the result then deletes the shell. @param wsManRequestInputs @return a map with the result of the command and the ...
[ "Executes", "a", "command", "on", "a", "remote", "shell", "by", "communicating", "with", "the", "WinRM", "server", "from", "the", "remote", "host", ".", "Method", "creates", "a", "shell", "runs", "a", "command", "on", "the", "shell", "waits", "for", "the",...
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java#L107-L120
train
CloudSlang/cs-actions
cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java
WSManRemoteShellService.setCommonHttpInputs
private static HttpClientInputs setCommonHttpInputs(HttpClientInputs httpClientInputs, URL url, WSManRequestInputs wsManRequestInputs) throws MalformedURLException { httpClientInputs.setUrl(url.toString()); httpClientInputs.setUsername(wsManRequestInputs.getUsername()); httpClientInputs.setPassw...
java
private static HttpClientInputs setCommonHttpInputs(HttpClientInputs httpClientInputs, URL url, WSManRequestInputs wsManRequestInputs) throws MalformedURLException { httpClientInputs.setUrl(url.toString()); httpClientInputs.setUsername(wsManRequestInputs.getUsername()); httpClientInputs.setPassw...
[ "private", "static", "HttpClientInputs", "setCommonHttpInputs", "(", "HttpClientInputs", "httpClientInputs", ",", "URL", "url", ",", "WSManRequestInputs", "wsManRequestInputs", ")", "throws", "MalformedURLException", "{", "httpClientInputs", ".", "setUrl", "(", "url", "."...
Configures the HttpClientInputs object with the most common http parameters. @param httpClientInputs @param url @param wsManRequestInputs @return the configured HttpClientInputs object. @throws MalformedURLException
[ "Configures", "the", "HttpClientInputs", "object", "with", "the", "most", "common", "http", "parameters", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java#L131-L157
train
CloudSlang/cs-actions
cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java
WSManRemoteShellService.executeRequestWithBody
private Map<String, String> executeRequestWithBody(HttpClientService csHttpClient, HttpClientInputs httpClientInputs, String body) { httpClientInputs.setBody(body); Map<String, String> requestResponse = csHttpClient.execute(httpClientInputs); if (UNAUTHORIZED_STATUS_CODE.equals(requestResponse.g...
java
private Map<String, String> executeRequestWithBody(HttpClientService csHttpClient, HttpClientInputs httpClientInputs, String body) { httpClientInputs.setBody(body); Map<String, String> requestResponse = csHttpClient.execute(httpClientInputs); if (UNAUTHORIZED_STATUS_CODE.equals(requestResponse.g...
[ "private", "Map", "<", "String", ",", "String", ">", "executeRequestWithBody", "(", "HttpClientService", "csHttpClient", ",", "HttpClientInputs", "httpClientInputs", ",", "String", "body", ")", "{", "httpClientInputs", ".", "setBody", "(", "body", ")", ";", "Map",...
This method executes a request with the given CSHttpClient, HttpClientInputs and body. @param csHttpClient @param httpClientInputs @param body @return the result of the request execution.
[ "This", "method", "executes", "a", "request", "with", "the", "given", "CSHttpClient", "HttpClientInputs", "and", "body", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java#L167-L174
train
CloudSlang/cs-actions
cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java
WSManRemoteShellService.createShell
private String createShell(HttpClientService csHttpClient, HttpClientInputs httpClientInputs, WSManRequestInputs wsManRequestInputs) throws RuntimeException, IOException, URISyntaxException, XPathExpressionException, SAXException, ParserConfigurationException { String document = Resource...
java
private String createShell(HttpClientService csHttpClient, HttpClientInputs httpClientInputs, WSManRequestInputs wsManRequestInputs) throws RuntimeException, IOException, URISyntaxException, XPathExpressionException, SAXException, ParserConfigurationException { String document = Resource...
[ "private", "String", "createShell", "(", "HttpClientService", "csHttpClient", ",", "HttpClientInputs", "httpClientInputs", ",", "WSManRequestInputs", "wsManRequestInputs", ")", "throws", "RuntimeException", ",", "IOException", ",", "URISyntaxException", ",", "XPathExpressionE...
Creates a shell on the remote server and returns the shell id. @param csHttpClient @param httpClientInputs @param wsManRequestInputs @return the id of the created shell. @throws RuntimeException @throws IOException @throws URISyntaxException @throws TransformerException @throws XPathExpressionException @throws SAXExce...
[ "Creates", "a", "shell", "on", "the", "remote", "server", "and", "returns", "the", "shell", "id", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java#L191-L200
train
CloudSlang/cs-actions
cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java
WSManRemoteShellService.executeCommand
private String executeCommand(HttpClientService csHttpClient, HttpClientInputs httpClientInputs, String shellId, WSManRequestInputs wsManRequestInputs, String command) throws RuntimeException, IOException, URISyntaxException, TransformerException, XPathExpressionException, ...
java
private String executeCommand(HttpClientService csHttpClient, HttpClientInputs httpClientInputs, String shellId, WSManRequestInputs wsManRequestInputs, String command) throws RuntimeException, IOException, URISyntaxException, TransformerException, XPathExpressionException, ...
[ "private", "String", "executeCommand", "(", "HttpClientService", "csHttpClient", ",", "HttpClientInputs", "httpClientInputs", ",", "String", "shellId", ",", "WSManRequestInputs", "wsManRequestInputs", ",", "String", "command", ")", "throws", "RuntimeException", ",", "IOEx...
Executes a command on the given shell. @param csHttpClient @param httpClientInputs @param shellId @param wsManRequestInputs @return the command id. @throws RuntimeException @throws IOException @throws URISyntaxException @throws TransformerException @throws XPathExpressionException @throws SAXException @throws ParserCo...
[ "Executes", "a", "command", "on", "the", "given", "shell", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java#L218-L228
train
CloudSlang/cs-actions
cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java
WSManRemoteShellService.receiveCommandResult
private Map<String, String> receiveCommandResult(HttpClientService csHttpClient, HttpClientInputs httpClientInputs, String shellId, String commandId, WSManRequestInputs wsManRequestInputs) throws RuntimeException, IOException, URISyntaxException, Transfor...
java
private Map<String, String> receiveCommandResult(HttpClientService csHttpClient, HttpClientInputs httpClientInputs, String shellId, String commandId, WSManRequestInputs wsManRequestInputs) throws RuntimeException, IOException, URISyntaxException, Transfor...
[ "private", "Map", "<", "String", ",", "String", ">", "receiveCommandResult", "(", "HttpClientService", "csHttpClient", ",", "HttpClientInputs", "httpClientInputs", ",", "String", "shellId", ",", "String", "commandId", ",", "WSManRequestInputs", "wsManRequestInputs", ")"...
Waits for a specific command that is running on a remote shell to finnish it's execution. @param csHttpClient @param httpClientInputs @param shellId @param commandId @param wsManRequestInputs @return the command execution result and exit code. @throws RuntimeException @throws IOException @throws URISyntaxException @th...
[ "Waits", "for", "a", "specific", "command", "that", "is", "running", "on", "a", "remote", "shell", "to", "finnish", "it", "s", "execution", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java#L249-L274
train
CloudSlang/cs-actions
cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java
WSManRemoteShellService.getResourceId
private String getResourceId(String response, String resourceResponseAction, String resourceIdXpath, String resourceIdExceptionMessage) throws ParserConfigurationException, SAXException, XPathExpressionException, IOException { if (WSManUtils.isSpecificResponseAction(response, resourceResponseAction)) { ...
java
private String getResourceId(String response, String resourceResponseAction, String resourceIdXpath, String resourceIdExceptionMessage) throws ParserConfigurationException, SAXException, XPathExpressionException, IOException { if (WSManUtils.isSpecificResponseAction(response, resourceResponseAction)) { ...
[ "private", "String", "getResourceId", "(", "String", "response", ",", "String", "resourceResponseAction", ",", "String", "resourceIdXpath", ",", "String", "resourceIdExceptionMessage", ")", "throws", "ParserConfigurationException", ",", "SAXException", ",", "XPathExpression...
This method retrieves the resource id from the create resource request response and throws the appropriate exceptions in case of failure. @param response @param resourceResponseAction @param resourceIdXpath @param resourceIdExceptionMessage @return @throws ParserConfigurationException @throws SAXException @throws XPat...
[ "This", "method", "retrieves", "the", "resource", "id", "from", "the", "create", "resource", "request", "response", "and", "throws", "the", "appropriate", "exceptions", "in", "case", "of", "failure", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java#L289-L302
train
CloudSlang/cs-actions
cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java
WSManRemoteShellService.deleteShell
private void deleteShell(HttpClientService csHttpClient, HttpClientInputs httpClientInputs, String shellId, WSManRequestInputs wsManRequestInputs) throws RuntimeException, IOException, URISyntaxException, TransformerException, XPathExpressionException, SAXException, ParserConfigurationException { St...
java
private void deleteShell(HttpClientService csHttpClient, HttpClientInputs httpClientInputs, String shellId, WSManRequestInputs wsManRequestInputs) throws RuntimeException, IOException, URISyntaxException, TransformerException, XPathExpressionException, SAXException, ParserConfigurationException { St...
[ "private", "void", "deleteShell", "(", "HttpClientService", "csHttpClient", ",", "HttpClientInputs", "httpClientInputs", ",", "String", "shellId", ",", "WSManRequestInputs", "wsManRequestInputs", ")", "throws", "RuntimeException", ",", "IOException", ",", "URISyntaxExceptio...
Deletes the remote shell. @param csHttpClient @param httpClientInputs @param shellId @param wsManRequestInputs @throws RuntimeException @throws IOException @throws URISyntaxException @throws TransformerException @throws XPathExpressionException @throws SAXException @throws ParserConfigurationException
[ "Deletes", "the", "remote", "shell", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java#L319-L331
train
CloudSlang/cs-actions
cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java
WSManRemoteShellService.processCommandExecutionResponse
private Map<String, String> processCommandExecutionResponse(Map<String, String> receiveResult) throws ParserConfigurationException, SAXException, XPathExpressionException, IOException { Map<String, String> scriptResults = new HashMap<>(); scriptResults.put(RETURN_RESULT, buildResultFromResponseStreams(r...
java
private Map<String, String> processCommandExecutionResponse(Map<String, String> receiveResult) throws ParserConfigurationException, SAXException, XPathExpressionException, IOException { Map<String, String> scriptResults = new HashMap<>(); scriptResults.put(RETURN_RESULT, buildResultFromResponseStreams(r...
[ "private", "Map", "<", "String", ",", "String", ">", "processCommandExecutionResponse", "(", "Map", "<", "String", ",", "String", ">", "receiveResult", ")", "throws", "ParserConfigurationException", ",", "SAXException", ",", "XPathExpressionException", ",", "IOExcepti...
This method separates the stdout and stderr response streams from the received execution response. @param receiveResult A map containing the response from the service. @return a map containing the stdout, stderr streams and the script exit code. @throws ParserConfigurationException @throws SAXException @throws XPathEx...
[ "This", "method", "separates", "the", "stdout", "and", "stderr", "response", "streams", "from", "the", "received", "execution", "response", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java#L343-L349
train
CloudSlang/cs-actions
cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java
WSManRemoteShellService.buildResultFromResponseStreams
private String buildResultFromResponseStreams(String response, OutputStream outputStream) throws ParserConfigurationException, SAXException, XPathExpressionException, IOException { StringBuilder commandResult = new StringBuilder(); int noOfStreams = WSManUtils.countStreamElements(response); for ...
java
private String buildResultFromResponseStreams(String response, OutputStream outputStream) throws ParserConfigurationException, SAXException, XPathExpressionException, IOException { StringBuilder commandResult = new StringBuilder(); int noOfStreams = WSManUtils.countStreamElements(response); for ...
[ "private", "String", "buildResultFromResponseStreams", "(", "String", "response", ",", "OutputStream", "outputStream", ")", "throws", "ParserConfigurationException", ",", "SAXException", ",", "XPathExpressionException", ",", "IOException", "{", "StringBuilder", "commandResult...
Constructs the executed command response from multiple streams of data containing the encoded result of the execution. @param response @param outputStream @return the decoded result of the command in a string. @throws ParserConfigurationException @throws SAXException @throws XPathExpressionException @throws IOExceptio...
[ "Constructs", "the", "executed", "command", "response", "from", "multiple", "streams", "of", "data", "containing", "the", "encoded", "result", "of", "the", "execution", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java#L362-L372
train
CloudSlang/cs-actions
cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java
WSManRemoteShellService.executionIsTimedOut
private boolean executionIsTimedOut(long aStartTime, int aTimeout) { if (aTimeout != 0) { long now = System.currentTimeMillis() / 1000; if ((now - aStartTime) >= aTimeout) { return true; } } return false; }
java
private boolean executionIsTimedOut(long aStartTime, int aTimeout) { if (aTimeout != 0) { long now = System.currentTimeMillis() / 1000; if ((now - aStartTime) >= aTimeout) { return true; } } return false; }
[ "private", "boolean", "executionIsTimedOut", "(", "long", "aStartTime", ",", "int", "aTimeout", ")", "{", "if", "(", "aTimeout", "!=", "0", ")", "{", "long", "now", "=", "System", ".", "currentTimeMillis", "(", ")", "/", "1000", ";", "if", "(", "(", "n...
Check whether or not the command execution reach the timeout value. @param aStartTime A start time in seconds. @param aTimeout A timeout value in seconds. @return true if it reaches timeout.
[ "Check", "whether", "or", "not", "the", "command", "execution", "reach", "the", "timeout", "value", "." ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-powershell/src/main/java/io/cloudslang/content/services/WSManRemoteShellService.java#L381-L389
train
CloudSlang/cs-actions
cs-commons/src/main/java/io/cloudslang/content/utils/CollectionUtilities.java
CollectionUtilities.toArrayWithEscaped
@NotNull public static String[] toArrayWithEscaped(@Nullable final String stringArray, @NotNull final String delimiter) { if (StringUtils.isEmpty(stringArray)) { return new String[0]; } return StringUtils.splitByWholeSeparatorPreserveAllTokens(stringArray, delimiter); }
java
@NotNull public static String[] toArrayWithEscaped(@Nullable final String stringArray, @NotNull final String delimiter) { if (StringUtils.isEmpty(stringArray)) { return new String[0]; } return StringUtils.splitByWholeSeparatorPreserveAllTokens(stringArray, delimiter); }
[ "@", "NotNull", "public", "static", "String", "[", "]", "toArrayWithEscaped", "(", "@", "Nullable", "final", "String", "stringArray", ",", "@", "NotNull", "final", "String", "delimiter", ")", "{", "if", "(", "StringUtils", ".", "isEmpty", "(", "stringArray", ...
Splits the stringArray by the delimiter into an array of strings without ignoring the escaped delimiters @param stringArray the string to be split @param delimiter the delimiter by which to split the stringArray @return an array of Strings
[ "Splits", "the", "stringArray", "by", "the", "delimiter", "into", "an", "array", "of", "strings", "without", "ignoring", "the", "escaped", "delimiters" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-commons/src/main/java/io/cloudslang/content/utils/CollectionUtilities.java#L48-L54
train
CloudSlang/cs-actions
cs-commons/src/main/java/io/cloudslang/content/utils/CollectionUtilities.java
CollectionUtilities.toArray
@NotNull public static String[] toArray(@Nullable final String stringArray, @NotNull final String delimiter) { if (StringUtils.isEmpty(stringArray)) { return new String[0]; } final String regex = "(?<!\\\\)" + Pattern.quote(delimiter); return stringArray.split(regex); ...
java
@NotNull public static String[] toArray(@Nullable final String stringArray, @NotNull final String delimiter) { if (StringUtils.isEmpty(stringArray)) { return new String[0]; } final String regex = "(?<!\\\\)" + Pattern.quote(delimiter); return stringArray.split(regex); ...
[ "@", "NotNull", "public", "static", "String", "[", "]", "toArray", "(", "@", "Nullable", "final", "String", "stringArray", ",", "@", "NotNull", "final", "String", "delimiter", ")", "{", "if", "(", "StringUtils", ".", "isEmpty", "(", "stringArray", ")", ")"...
Splits the stringArray by the delimiter into an array of strings ignoring the escaped delimiters @param stringArray the string to be split @param delimiter the delimiter by which to split the stringArray @return an array of Strings
[ "Splits", "the", "stringArray", "by", "the", "delimiter", "into", "an", "array", "of", "strings", "ignoring", "the", "escaped", "delimiters" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-commons/src/main/java/io/cloudslang/content/utils/CollectionUtilities.java#L63-L70
train
CloudSlang/cs-actions
cs-commons/src/main/java/io/cloudslang/content/utils/CollectionUtilities.java
CollectionUtilities.toListWithEscaped
@NotNull public static List<String> toListWithEscaped(@Nullable final String stringList, @NotNull final String delimiter) { return new ArrayList<>(Arrays.asList(toArrayWithEscaped(stringList, delimiter))); }
java
@NotNull public static List<String> toListWithEscaped(@Nullable final String stringList, @NotNull final String delimiter) { return new ArrayList<>(Arrays.asList(toArrayWithEscaped(stringList, delimiter))); }
[ "@", "NotNull", "public", "static", "List", "<", "String", ">", "toListWithEscaped", "(", "@", "Nullable", "final", "String", "stringList", ",", "@", "NotNull", "final", "String", "delimiter", ")", "{", "return", "new", "ArrayList", "<>", "(", "Arrays", ".",...
Splits the stringList by the delimiter into a List of strings without ignoring the escaped delimiters @param stringList the string to be split @param delimiter the delimiter by which to split the stringArray @return a list of Strings
[ "Splits", "the", "stringList", "by", "the", "delimiter", "into", "a", "List", "of", "strings", "without", "ignoring", "the", "escaped", "delimiters" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-commons/src/main/java/io/cloudslang/content/utils/CollectionUtilities.java#L79-L82
train
CloudSlang/cs-actions
cs-commons/src/main/java/io/cloudslang/content/utils/CollectionUtilities.java
CollectionUtilities.toList
@NotNull public static List<String> toList(@Nullable final String stringList, @NotNull final String delimiter) { return new ArrayList<>(Arrays.asList(toArray(stringList, delimiter))); }
java
@NotNull public static List<String> toList(@Nullable final String stringList, @NotNull final String delimiter) { return new ArrayList<>(Arrays.asList(toArray(stringList, delimiter))); }
[ "@", "NotNull", "public", "static", "List", "<", "String", ">", "toList", "(", "@", "Nullable", "final", "String", "stringList", ",", "@", "NotNull", "final", "String", "delimiter", ")", "{", "return", "new", "ArrayList", "<>", "(", "Arrays", ".", "asList"...
Splits the stringList by the delimiter into a List of strings ignoring the escaped delimiters @param stringList the string to be split @param delimiter the delimiter by which to split the stringArray @return a list of Strings
[ "Splits", "the", "stringList", "by", "the", "delimiter", "into", "a", "List", "of", "strings", "ignoring", "the", "escaped", "delimiters" ]
9a1be1e99ad88286a6c153d5f2275df6ae1a57a1
https://github.com/CloudSlang/cs-actions/blob/9a1be1e99ad88286a6c153d5f2275df6ae1a57a1/cs-commons/src/main/java/io/cloudslang/content/utils/CollectionUtilities.java#L91-L94
train
ist-dresden/composum
sling/core/commons/src/main/java/com/composum/sling/core/RequestBundle.java
RequestBundle.get
public static synchronized RequestBundle get(SlingHttpServletRequest request) { RequestBundle instance = (RequestBundle) request.getAttribute(ATTRIBUTE_KEY); if (instance == null) { instance = new RequestBundle(request); request.setAttribute(ATTRIBUTE_KEY, instance); } ...
java
public static synchronized RequestBundle get(SlingHttpServletRequest request) { RequestBundle instance = (RequestBundle) request.getAttribute(ATTRIBUTE_KEY); if (instance == null) { instance = new RequestBundle(request); request.setAttribute(ATTRIBUTE_KEY, instance); } ...
[ "public", "static", "synchronized", "RequestBundle", "get", "(", "SlingHttpServletRequest", "request", ")", "{", "RequestBundle", "instance", "=", "(", "RequestBundle", ")", "request", ".", "getAttribute", "(", "ATTRIBUTE_KEY", ")", ";", "if", "(", "instance", "==...
returns the requests instance
[ "returns", "the", "requests", "instance" ]
ebc79f559f6022c935240c19102539bdfb1bd1e2
https://github.com/ist-dresden/composum/blob/ebc79f559f6022c935240c19102539bdfb1bd1e2/sling/core/commons/src/main/java/com/composum/sling/core/RequestBundle.java#L19-L26
train