org.nasdanika.models.rules.ResourceAction Maven / Gradle / Ivy
/**
*/
package org.nasdanika.models.rules;
/**
*
* A representation of the model object 'Resource Action'.
*
*
*
* An action on a resource identified by a string identifier, e.g. a path or URI
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.models.rules.ResourceAction#getResourceIdentifier Resource Identifier}
*
*
* @see org.nasdanika.models.rules.RulesPackage#getResourceAction()
* @model
* @generated
*/
public interface ResourceAction extends Action {
/**
* Returns the value of the 'Resource Identifier' attribute.
*
*
*
* Resource identifier - path, URI, ...
*
* @return the value of the 'Resource Identifier' attribute.
* @see #setResourceIdentifier(String)
* @see org.nasdanika.models.rules.RulesPackage#getResourceAction_ResourceIdentifier()
* @model
* @generated
*/
String getResourceIdentifier();
/**
* Sets the value of the '{@link org.nasdanika.models.rules.ResourceAction#getResourceIdentifier Resource Identifier}' attribute.
*
*
* @param value the new value of the 'Resource Identifier' attribute.
* @see #getResourceIdentifier()
* @generated
*/
void setResourceIdentifier(String value);
} // ResourceAction