TSK-310: Add setOwner() to the public interface of WB.
This commit is contained in:
parent
1ee7b1d5fc
commit
c3bac7e476
|
@ -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();
|
||||
|
||||
}
|
||||
|
|
|
@ -92,6 +92,7 @@ public class WorkbasketImpl implements Workbasket {
|
|||
return owner;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setOwner(String owner) {
|
||||
this.owner = owner;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue