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 String
getResource()
Deprecated.UsegetResourceUuid()
for formcycle resources orgetResourceUri()
for URIsERessourcenTyp
getResourceType()
Gets the type of the resourceString
getResourceUri()
Gets the resource URI that is needed for processingString
getResourceUuid()
Gets the resource UUID that is needed for processingdefault ERessourcenTyp
getRessTypeEnum()
Deprecated.UsegetResourceType()
insteadvoid
setResource(String resource)
Deprecated.UsesetResourceUuid(String)
for formcycle resources orsetResourceUri(String)
for URIsvoid
setResourceUri(String uri)
Sets the resource URI that is needed for processingvoid
setResourceUuid(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
-String
UUID of the resource
-
getResourceUuid
String getResourceUuid()
Gets the resource UUID that is needed for processing- Returns:
String
UUID of the resource
-
setResourceUri
void setResourceUri(String uri)
Sets the resource URI that is needed for processing- Parameters:
uri
-String
URI of the resource
-
getResourceUri
String getResourceUri()
Gets the resource URI that is needed for processing- Returns:
String
URI of the resource
-
getResourceType
ERessourcenTyp getResourceType()
Gets the type of the resource- Returns:
ERessourcenTyp
resource 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
-
-