Class OperationValues
- java.lang.Object
-
- com.boomi.connector.sample.browse.OperationValues
-
public class OperationValues extends Object
Maps the fields defined inImportableFieldsBrowser
to POJO fields defined in this class. The values fields are stored inOperationContext
.
-
-
Constructor Summary
Constructors Constructor Description OperationValues(OperationContext context)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>
getCustomPropertyValue()
Fetches the the map of user input values for the field with ID: "customPropertiesField" fromImportableFieldsBrowser
Long
getReplacementValue()
Fetches the user input value for the field with ID: "replacementField" fromImportableFieldsBrowser
String
getSelectedListValue()
Fetches the user Selected value for the field with ID: "listField" fromImportableFieldsBrowser
String
getSimpleFieldValue()
Fetches the user input value for the field with ID: "simpleField" fromImportableFieldsBrowser
-
-
-
Constructor Detail
-
OperationValues
public OperationValues(OperationContext context)
-
-
Method Detail
-
getSimpleFieldValue
public String getSimpleFieldValue()
Fetches the user input value for the field with ID: "simpleField" fromImportableFieldsBrowser
- Returns:
- String simpleFieldValue
-
getSelectedListValue
public String getSelectedListValue()
Fetches the user Selected value for the field with ID: "listField" fromImportableFieldsBrowser
- Returns:
- String selectedListValue
-
getReplacementValue
public Long getReplacementValue()
Fetches the user input value for the field with ID: "replacementField" fromImportableFieldsBrowser
- Returns:
- Long replacementValue
-
getCustomPropertyValue
public Map<String,String> getCustomPropertyValue()
Fetches the the map of user input values for the field with ID: "customPropertiesField" fromImportableFieldsBrowser
- Returns:
- Long replacementValue
-
-