Package cx.syndeo.scripting.entities
Interface ScriptProperties
public interface ScriptProperties
Provides access to named script properties, potentially involving cryptographic operations.
-
Method Summary
-
Method Details
-
get
Retrieves the value of the property with the given name. Implementations may perform decryption or other cryptographic work depending on whether the property has been marked as sensitive.- Parameters:
name_p- the name of the property to retrieve- Returns:
- the property value
- Throws:
cx.syndeo.exceptions.CryptoException- There was an error decrypting a secret property
-
has
Checks whether a property with the given name exists.- Parameters:
name_p- the name of the property to check- Returns:
trueif the property is present,falseotherwise
-