Deprecated API


Contents
Deprecated Classes
org.simpleds.KeysFactory
          use KeyFactory2 instead 
org.simpleds.PagedList
          CursorList instead 
org.simpleds.PagedQuery
          use CursorList and SimpleQuery.asCursorList(int) instead 
 

Deprecated Methods
org.simpleds.EntityManager.asIterable(SimpleQuery)
          use SimpleQuery.asIterable() instead 
org.simpleds.EntityManager.asIterator(SimpleQuery)
          use SimpleQuery.asIterator() instead 
org.simpleds.EntityManager.count(SimpleQuery)
          use SimpleQuery.count() instead 
org.simpleds.KeyFactory2.create(Class, Collection)
          use Collections2.transform(ids, new IdToKeyFunction(clazz)); 
org.simpleds.KeyFactory2.create(Key, Class, Collection)
          use Collections2.transform(ids, new IdToKeyFunction(clazz).withParent(parentKey)); 
org.simpleds.KeyFactory2.create(Key, String, Collection)
          use Collections2.transform(ids, new IdToKeyFunction(kind).withParent(parentKey)); 
org.simpleds.KeyFactory2.create(String, Collection)
          use Collections2.transform(ids, new IdToKeyFunction(kind)); 
org.simpleds.EntityManager.createPagedQuery(Class)
          SimpleQuery.asCursorList(int) instead 
org.simpleds.EntityManager.createPagedQuery(Key, Class)
          SimpleQuery.asCursorList(int) instead 
org.simpleds.EntityManager.createPagedQuery(Key, String)
          SimpleQuery.asCursorList(int) instead 
org.simpleds.EntityManager.createPagedQuery(String)
          use SimpleQuery.asCursorList(int) instead 
org.simpleds.EntityManager.find(SimpleQuery)
          use SimpleQuery.asList() instead 
org.simpleds.EntityManager.findChildren(Key, Class)
          use entityManager.createQuery(parentKey, childrenClass).asList() instead. 
org.simpleds.EntityManager.findChildrenKeys(Key, Class)
          use entityManager.createQuery(parentKey, childrenClass).keysOnly().asList() instead. 
org.simpleds.EntityManager.findPaged(PagedQuery)
          use PagedQuery.asPagedList() instead 
org.simpleds.EntityManager.findSingle(SimpleQuery)
          use SimpleQuery.asSingleResult() instead 
org.simpleds.ParameterQuery.orderAsc(String)
          use ParameterQuery.sortAsc(String) instead 
org.simpleds.SimpleQuery.orderAsc(String)
          use sortAsc instead 
org.simpleds.ParameterQuery.orderDesc(String)
          use ParameterQuery.sortDesc(String) instead 
org.simpleds.SimpleQuery.orderDesc(String)
          use sortDesc instead 
org.simpleds.SimpleQuery.withCursor(Cursor)
          use withStartCursor instead 
org.simpleds.SimpleQuery.withCursor(String)
          use withStartCursor(String) instead 
 

Deprecated Annotation Type Elements
org.simpleds.annotations.Entity.parent
          use Id instead