TSK-310: Add setOwner() to the public interface of WB.

This commit is contained in:
Marcel Lengl 2018-02-19 16:52:52 +01:00 committed by Holger Hagen
parent 1ee7b1d5fc
commit c3bac7e476
2 changed files with 9 additions and 1 deletions

View File

@ -104,6 +104,14 @@ public interface Workbasket {
*/
String getOwner();
/**
* Sets the owner-ID of the workbasket.
*
* @param owner
* of the current workbasket
*/
void setOwner(String owner);
/**
* Return the value for the custom1 attribute.
*
@ -230,5 +238,4 @@ public interface Workbasket {
* @return the WorkbasketSummary object for the current work basket
*/
WorkbasketSummary asSummary();
}

View File

@ -92,6 +92,7 @@ public class WorkbasketImpl implements Workbasket {
return owner;
}
@Override
public void setOwner(String owner) {
this.owner = owner;
}