Package au.com.motodetail.poi.entity

Examples of au.com.motodetail.poi.entity.PoiEntity


        }
    }

    public void DebugAddRandomPoiEntity()
    {
        PoiEntity poiEntity = new PoiEntity();

        //set local attributes
        poiEntity.setName(BaseUtil.GenerateRandomString(10));
        poiEntity.setLatitude(10.0);
        poiEntity.setLongitude(10.0);

        //type relationship .. get it from DB
        try
        {
            List<BasicEntityType> basicEntityType = basicEntityTypeService.getAll();
            for(BasicEntityType bet:basicEntityType)
            {
                if(bet.getType() == EntityType.POI)
                {
                    poiEntity.setEntityType(bet);
                    poiEntityService.create(poiEntity);
                    break;
                }
            }
        }
View Full Code Here

TOP

Related Classes of au.com.motodetail.poi.entity.PoiEntity

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.