use of jsinterop.annotations.JsIgnore in project console by hal.
the class ComplexAttributeOperations method remove.
/**
* Undefines the complex attribute at the specified index. After the attribute has been undefined a standard success message
* is fired and the specified callback is executed.
*
* @param resource the resource name
* @param complexAttribute the name of the complex attribute
* @param type the human readable name of the complex attribute
* @param index the index for the list-type complex attribute
* @param template the address template which is resolved against the current statement context and the resource name to get
* the resource address for the operation
* @param callback the callback executed after the complex attribute has been undefined
*/
@JsIgnore
public void remove(String resource, String complexAttribute, String type, int index, AddressTemplate template, Callback callback) {
ResourceAddress address = template.resolve(statementContext, resource);
remove(complexAttribute, type, index, address, callback);
}
Aggregations