Package de.xima.fc.interfaces
Interface IResourceConsuming
-
- All Known Implementing Classes:
VerarbeitungExterneRessource,VerarbeitungPdf,VerarbeitungWord
public interface IResourceConsuming
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description StringgetResource()Deprecated.UsegetResourceUuid()for formcycle resources orgetResourceUri()for URIsERessourcenTypgetResourceType()Gets the type of the resourceStringgetResourceUri()Gets the resource URI that is needed for processingStringgetResourceUuid()Gets the resource UUID that is needed for processingdefault ERessourcenTypgetRessTypeEnum()Deprecated.UsegetResourceType()insteadvoidsetResource(String resource)Deprecated.UsesetResourceUuid(String)for formcycle resources orsetResourceUri(String)for URIsvoidsetResourceUri(String uri)Sets the resource URI that is needed for processingvoidsetResourceUuid(String uuid)Sets the resource UUID that is needed for processing
-
-
-
Method Detail
-
setResourceUuid
void setResourceUuid(String uuid)
Sets the resource UUID that is needed for processing- Parameters:
uuid-StringUUID of the resource
-
getResourceUuid
String getResourceUuid()
Gets the resource UUID that is needed for processing- Returns:
StringUUID of the resource
-
setResourceUri
void setResourceUri(String uri)
Sets the resource URI that is needed for processing- Parameters:
uri-StringURI of the resource
-
getResourceUri
String getResourceUri()
Gets the resource URI that is needed for processing- Returns:
StringURI of the resource
-
getResourceType
ERessourcenTyp getResourceType()
Gets the type of the resource- Returns:
ERessourcenTypresource type
-
setResource
@Deprecated void setResource(String resource)
Deprecated.UsesetResourceUuid(String)for formcycle resources orsetResourceUri(String)for URIs
-
getResource
@Deprecated String getResource()
Deprecated.UsegetResourceUuid()for formcycle resources orgetResourceUri()for URIs
-
getRessTypeEnum
@Deprecated default ERessourcenTyp getRessTypeEnum()
Deprecated.UsegetResourceType()instead
-
-