Commit e0c36c3e by Tuukka Kivilahti

added comments

1 parent cea82251
...@@ -145,6 +145,12 @@ public interface PlaceBeanLocal { ...@@ -145,6 +145,12 @@ public interface PlaceBeanLocal {
*/ */
List<Place> findAllForEvent(); List<Place> findAllForEvent();
/**
* Does user have places what is selected but is not locked.
*
* @param user
* @return
*/
boolean isUnlockedPlaces(EventUser user); boolean isUnlockedPlaces(EventUser user);
} }
\ No newline at end of file
...@@ -52,6 +52,10 @@ public interface QueueBeanLocal { ...@@ -52,6 +52,10 @@ public interface QueueBeanLocal {
void forceRemove(EventMap e, EventUser u); void forceRemove(EventMap e, EventUser u);
/**
* Remove eventuser from all queues.
* @param user
*/
void removeFromAll(EventUser user); void removeFromAll(EventUser user);
} }
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!