List of usage examples for org.springframework.util Assert notNull
@Deprecated public static void notNull(@Nullable Object object)
From source file:com.streamreduce.core.dao.RoleDAO.java
public Set<Role> findAccountRoles(ObjectId accountId) { Assert.notNull(accountId); return new HashSet<>(ds.find(entityClazz).asList()); }