Home
last modified time | relevance | path

Searched refs:TestPlanEntity (Results 1 – 10 of 10) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestPlanEntity.java35 public class TestPlanEntity implements DashboardEntity { class
36 protected static final Logger logger = Logger.getLogger(TestPlanEntity.class.getName());
51 public TestPlanEntity(String testPlanName) { in TestPlanEntity() method in TestPlanEntity
61 Key key = Key.create(TestPlanEntity.class, this.testPlanName); in getKey()
72 public static TestPlanEntity fromEntity(Entity e) { in fromEntity()
79 return new TestPlanEntity(testPlanName); in fromEntity()
84 public com.googlecode.objectify.Key<TestPlanEntity> save() { in save()
DTestPlanRunEntity.java74 @Parent private com.googlecode.objectify.Key<TestPlanEntity> parent;
164 com.googlecode.objectify.Key<TestPlanEntity> testPlanKey, in TestPlanRunEntity()
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowReleaseServlet.java19 import com.android.vts.entity.TestPlanEntity;
83 List<TestPlanEntity> testPlanEntityList = ofy().load().type(TestPlanEntity.class).list(); in getTestPlanDispatcher()
86 .sorted(Comparator.comparing(TestPlanEntity::getTestPlanName)) in getTestPlanDispatcher()
DShowPlanRunServlet.java20 import com.android.vts.entity.TestPlanEntity;
93 Key planKey = KeyFactory.createKey(TestPlanEntity.KIND, plan); in doGetHandler()
DShowGreenReleaseServlet.java20 import com.android.vts.entity.TestPlanEntity;
232 .setAncestor(KeyFactory.createKey(TestPlanEntity.KIND, testPlan)) in getTestPlanDispatcher()
278 KeyFactory.createKey(TestPlanEntity.KIND, testPlan); in getTestPlanDispatcher()
DShowPlanReleaseServlet.java20 import com.android.vts.entity.TestPlanEntity;
197 Key testPlanKey = KeyFactory.createKey(TestPlanEntity.KIND, testPlan); in getTestPlanDispatcher()
/test/vti/dashboard/src/main/java/com/android/vts/config/
DObjectifyListener.java35 import com.android.vts.entity.TestPlanEntity;
105 ObjectifyService.register(TestPlanEntity.class); in contextInitialized()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DDatastoreRestServlet.java30 import com.android.vts.entity.TestPlanEntity;
437 TestPlanEntity testPlanEntity = new TestPlanEntity(testPlanName); in insertTestPlanReport()
DTestDataForDevServlet.java27 import com.android.vts.entity.TestPlanEntity;
571 new TestPlanEntity(testPlan.testPlanName).toEntity(); in doPost()
/test/vti/dashboard/src/main/java/com/android/vts/util/
DDatastoreHelper.java26 import com.android.vts.entity.TestPlanEntity;