Skip navigation links
B C D E F G I L S T 

B

booleanProperty(String) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.ConfigurableTemplate
 

C

com.appian.connectedsystems.simplified.sdk - package com.appian.connectedsystems.simplified.sdk
 
com.appian.connectedsystems.simplified.sdk.configuration - package com.appian.connectedsystems.simplified.sdk.configuration
 
com.appian.connectedsystems.simplified.sdk.connectiontesting - package com.appian.connectedsystems.simplified.sdk.connectiontesting
 
com.appian.connectedsystems.simplified.sdk.oauth - package com.appian.connectedsystems.simplified.sdk.oauth
 
ConfigurableTemplate - Class in com.appian.connectedsystems.simplified.sdk.configuration
Creates fields that are used to accept and store user input, display read-only information to the user, and store additional metadata needed for execution.
ConfigurableTemplate() - Constructor for class com.appian.connectedsystems.simplified.sdk.configuration.ConfigurableTemplate
 

D

deroot(PropertyPath) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.ConfigurableTemplate
 
documentProperty(String) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.ConfigurableTemplate
 
doubleProperty(String) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.ConfigurableTemplate
 
dropdownProperty(String, List<Choice>) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.ConfigurableTemplate
 

E

encryptedTextProperty(String) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.ConfigurableTemplate
 
execute(SimpleClientApiRequest, ExecutionContext) - Method in class com.appian.connectedsystems.simplified.sdk.SimpleClientApi
Defines the behavior of the Client API.
execute(ClientApiRequest, ExecutionContext) - Method in class com.appian.connectedsystems.simplified.sdk.SimpleClientApi
 
execute(SimpleConfiguration, SimpleConfiguration, ExecutionContext) - Method in class com.appian.connectedsystems.simplified.sdk.SimpleIntegrationTemplate
Completes the operation in the external system and returns the result to the designer This method is called when a designer hits the test-request button in the Integration Designer, or when an integration is executed from a process, a SAIL form, or a Web API.
execute(ConfigurationDescriptor, ConfigurationDescriptor, ExecutionContext) - Method in class com.appian.connectedsystems.simplified.sdk.SimpleIntegrationTemplate
 

F

folderProperty(String) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.ConfigurableTemplate
 
from(ConfigurationDescriptor, TypePropertyFactory, ExecutionContext) - Static method in class com.appian.connectedsystems.simplified.sdk.configuration.SimpleConfiguration
 

G

getConfiguration(SimpleConfiguration, ExecutionContext) - Method in class com.appian.connectedsystems.simplified.sdk.SimpleConnectedSystemTemplate
Returns the configuration that defines the UI and data stored for an Appian Connected System object.
getConfiguration(SimpleConfiguration, SimpleConfiguration, PropertyPath, ExecutionContext) - Method in class com.appian.connectedsystems.simplified.sdk.SimpleIntegrationTemplate
Returns a configuration that defines the UI and values of an Appian integration object.
getConfigurationDescriptor(ConfigurationDescriptor, PropertyPath, ExecutionContext) - Method in class com.appian.connectedsystems.simplified.sdk.SimpleConnectedSystemTemplate
 
getConfigurationDescriptor(ConfigurationDescriptor, ConfigurationDescriptor, PropertyPath, ExecutionContext) - Method in class com.appian.connectedsystems.simplified.sdk.SimpleIntegrationTemplate
 
getConnectedSystemConfiguration() - Method in class com.appian.connectedsystems.simplified.sdk.SimpleClientApiRequest
The configuration of the connected system associated with the Client API.
getOAuthConfiguration(SimpleConfiguration) - Method in class com.appian.connectedsystems.simplified.sdk.oauth.SimpleOAuthConnectedSystemTemplate
Given designer entered data, returns information needed to authorize using OAuth 2.0 authorization code grant Given the designer entered information contained in the SimpleConfiguration, returns OAuthConfigurationData that contains the information needed to prompt the designer to authorize
getOAuthConfiguration(ConfigurationDescriptor) - Method in class com.appian.connectedsystems.simplified.sdk.oauth.SimpleOAuthConnectedSystemTemplate
 
getPayload() - Method in class com.appian.connectedsystems.simplified.sdk.SimpleClientApiRequest
The payload sent by the Component Plugin.
getProperties() - Method in class com.appian.connectedsystems.simplified.sdk.configuration.SimpleConfiguration
Properties define how fields are displayed.
getProperty(String) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.SimpleConfiguration
Properties define how fields are displayed.
getValue(String) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.SimpleConfiguration
Gets a value stored in the configuration All values inside the configuration can be null.
getValue(PropertyPath) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.SimpleConfiguration
Gets a value stored anywhere in the configuration.

I

integerProperty(String) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.ConfigurableTemplate
 

L

listTypeProperty(String) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.ConfigurableTemplate
 
localType(String) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.ConfigurableTemplate
A data structure consisting of a name and a list of PropertyDescriptor.
localTypeProperty(LocalTypeDescriptor) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.ConfigurableTemplate
 
localTypeProperty(LocalTypeDescriptor, String) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.ConfigurableTemplate
 
localTypeProperty(LocalTypeDescriptor) - Method in class com.appian.connectedsystems.simplified.sdk.SimpleIntegrationTemplate
 
localTypeProperty(LocalTypeDescriptor, String) - Method in class com.appian.connectedsystems.simplified.sdk.SimpleIntegrationTemplate
 

S

setErrors(List<String>) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.SimpleConfiguration
Set errors at the highest level of the configuration Use this method to show invalid configurations in the connected system or errors resulting from an invalid combination of multiple fields' configurations
setErrors(String, List<String>) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.SimpleConfiguration
Sets an error in the configuration.
setErrors(PropertyPath, List<String>) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.SimpleConfiguration
Sets an error anywhere in the configuration.
setProperties(PropertyDescriptor...) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.SimpleConfiguration
Defines the UI and data structure of the Appian object integrationConfiguration.setProperties( textProperty("name") .label("Name") .instructionText("Please enter your first and last name") .build(), integerProperty("height") .label("Height") .build(), integerProperty("age") .label("Age") .build(), booleanProperty("requiresParentApproval") .label("Requires Parent Approval") .description("If true, you need to ask your parents first!")
setValue(String, Object) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.SimpleConfiguration
Sets a value stored in the configuration.
setValue(PropertyPath, Object) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.SimpleConfiguration
Sets a value stored anywhere in the configuration.
SimpleClientApi - Class in com.appian.connectedsystems.simplified.sdk
A Client API enhances a Component Plugin (CP) with the capability to execute code on the server with access to secured values Each Client API must be associated with exactly one SimpleConnectedSystemTemplate.
SimpleClientApi() - Constructor for class com.appian.connectedsystems.simplified.sdk.SimpleClientApi
 
SimpleClientApiRequest - Class in com.appian.connectedsystems.simplified.sdk
Representation of a request from a Component Plugin coupled with data from the associated Appian Connected System object.
SimpleConfiguration - Class in com.appian.connectedsystems.simplified.sdk.configuration
Defines the configuration of an Appian Connected System object or an Appian Integration object.
SimpleConnectedSystemTemplate - Class in com.appian.connectedsystems.simplified.sdk
Each subclass of SimpleConnectedSystemTemplate represents a new type of ConnectedSystem available to designers in Appian.
SimpleConnectedSystemTemplate() - Constructor for class com.appian.connectedsystems.simplified.sdk.SimpleConnectedSystemTemplate
 
SimpleIntegrationTemplate - Class in com.appian.connectedsystems.simplified.sdk
Each implementation of SimpleIntegrationTemplate represents a new type of integration available to designers in Appian.
SimpleIntegrationTemplate() - Constructor for class com.appian.connectedsystems.simplified.sdk.SimpleIntegrationTemplate
 
SimpleOAuthConnectedSystemTemplate - Class in com.appian.connectedsystems.simplified.sdk.oauth
SimpleConnectedSystemTemplate that uses the Authorization Code Grant type Connected System Templates that extend SimpleOAuthConnectedSystemTemplate can be authorized from the UI by a designer.
SimpleOAuthConnectedSystemTemplate() - Constructor for class com.appian.connectedsystems.simplified.sdk.oauth.SimpleOAuthConnectedSystemTemplate
 
SimpleTestableConnectedSystemTemplate - Class in com.appian.connectedsystems.simplified.sdk.connectiontesting
SimpleConnectedSystemTemplate that contains credentials that can be validated against an external system.
SimpleTestableConnectedSystemTemplate() - Constructor for class com.appian.connectedsystems.simplified.sdk.connectiontesting.SimpleTestableConnectedSystemTemplate
 

T

testConnection(SimpleConfiguration, ExecutionContext) - Method in class com.appian.connectedsystems.simplified.sdk.connectiontesting.SimpleTestableConnectedSystemTemplate
Validates credentials in the connected system Called when designer tests the credentials of a Testable Connected System
testConnection(ConfigurationDescriptor, ExecutionContext) - Method in class com.appian.connectedsystems.simplified.sdk.connectiontesting.SimpleTestableConnectedSystemTemplate
 
textProperty(String) - Method in class com.appian.connectedsystems.simplified.sdk.configuration.ConfigurableTemplate
 
toConfiguration() - Method in class com.appian.connectedsystems.simplified.sdk.configuration.SimpleConfiguration
 
typePropertyFactory - Variable in class com.appian.connectedsystems.simplified.sdk.configuration.ConfigurableTemplate
 
B C D E F G I L S T 
Skip navigation links

Copyright © 2018-present Appian Corporation. All Rights Reserved.