Skip to content
Snippets Groups Projects
Commit 7f243d35 authored by jakubs's avatar jakubs
Browse files

BIS-190 SP-295 add getting material by identifier in dropbox transaction

SVN: 27533
parent 34beab0a
No related branches found
No related tags found
No related merge requests found
......@@ -198,6 +198,11 @@ public class ImagingDataSetRegistrationTransactionV2Delegate implements
{
return transaction.getMaterial(materialCode, materialType);
}
@Override
public IMaterialImmutable getMaterial(String identifier)
{
return transaction.getMaterial(identifier);
}
@Override
public IMaterial getMaterialForUpdate(String materialCode, String materialType)
......@@ -205,6 +210,12 @@ public class ImagingDataSetRegistrationTransactionV2Delegate implements
return transaction.getMaterialForUpdate(materialCode, materialType);
}
@Override
public IMaterial getMaterialForUpdate(String identifier)
{
return transaction.getMaterialForUpdate(identifier);
}
@Override
public IMaterial makeMaterialMutable(IMaterialImmutable material)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment