use of com.runwaysdk.business.Business in project geoprism-registry by terraframe.
the class ListTypeVersion method publishRecord.
@Transaction
public void publishRecord(ServerGeoObjectIF object) {
// Only working lists can be updated from changes to the graph objects
if (this.getWorking()) {
object.setDate(this.getForDate());
// Delete tile cache
ListTileCache.deleteTiles(this);
ListType masterlist = this.getListType();
MdBusinessDAO mdBusiness = MdBusinessDAO.get(this.getMdBusinessOid()).getBusinessDAO();
Collection<Locale> locales = LocalizationFacade.getInstalledLocales();
// Add the type ancestor fields
ServerGeoObjectType type = ServerGeoObjectType.get(masterlist.getUniversal());
Map<ServerHierarchyType, List<ServerGeoObjectType>> ancestorMap = masterlist.getAncestorMap(type);
Set<ServerHierarchyType> hierarchiesOfSubTypes = type.getHierarchiesOfSubTypes();
Collection<AttributeType> attributes = type.getAttributeMap().values();
Business business = new Business(mdBusiness.definesType());
this.publish(masterlist, type, object, business, attributes, ancestorMap, hierarchiesOfSubTypes, locales);
}
}
use of com.runwaysdk.business.Business in project geoprism-registry by terraframe.
the class ListTypeVersion method updateRecord.
@Transaction
public void updateRecord(ServerGeoObjectIF object) {
// Only working lists can be updated from changes to the graph objects
if (this.getWorking()) {
object.setDate(this.getForDate());
// Delete tile cache
ListTileCache.deleteTiles(this);
ListType masterlist = this.getListType();
MdBusinessDAO mdBusiness = MdBusinessDAO.get(this.getMdBusinessOid()).getBusinessDAO();
Collection<Locale> locales = LocalizationFacade.getInstalledLocales();
// Add the type ancestor fields
ServerGeoObjectType type = ServerGeoObjectType.get(masterlist.getUniversal());
Set<ServerHierarchyType> hierarchiesOfSubTypes = type.getHierarchiesOfSubTypes();
Map<ServerHierarchyType, List<ServerGeoObjectType>> ancestorMap = masterlist.getAncestorMap(type);
Collection<AttributeType> attributes = type.getAttributeMap().values();
BusinessQuery query = new QueryFactory().businessQuery(mdBusiness.definesType());
query.WHERE(query.aCharacter(DefaultAttribute.CODE.getName()).EQ(object.getCode()));
List<Business> records = query.getIterator().getAll();
for (Business record : records) {
try {
record.appLock();
this.publish(masterlist, type, object, record, attributes, ancestorMap, hierarchiesOfSubTypes, locales);
} finally {
record.unlock();
}
}
}
}
use of com.runwaysdk.business.Business in project geoprism-registry by terraframe.
the class ListTypeVersion method record.
public JsonObject record(String uid) {
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
format.setTimeZone(GeoRegistryUtil.SYSTEM_TIMEZONE);
NumberFormat numberFormat = NumberFormat.getInstance(Session.getCurrentLocale());
MdBusinessDAOIF mdBusiness = MdBusinessDAO.get(this.getMdBusinessOid());
List<? extends MdAttributeConcreteDAOIF> mdAttributes = mdBusiness.definesAttributes();
BusinessQuery query = new QueryFactory().businessQuery(mdBusiness.definesType());
query.WHERE(query.get(DefaultAttribute.UID.getName()).EQ(uid));
JsonObject record = new JsonObject();
record.addProperty("recordType", "LIST");
record.addProperty("version", this.getOid());
record.add("typeLabel", LocalizedValueConverter.convert(this.getListType().getDisplayLabel()).toJSON());
record.add("attributes", this.getAttributesAsJson());
try (OIterator<Business> iterator = query.getIterator()) {
if (iterator.hasNext()) {
Business row = iterator.next();
JsonObject object = new JsonObject();
object.addProperty(ORIGINAL_OID, row.getValue(ORIGINAL_OID));
for (MdAttributeConcreteDAOIF mdAttribute : mdAttributes) {
if (this.isValid(mdAttribute)) {
String attributeName = mdAttribute.definesAttribute();
Object value = row.getObjectValue(attributeName);
if (value != null) {
if (value instanceof Double) {
object.addProperty(mdAttribute.definesAttribute(), numberFormat.format((Double) value));
} else if (value instanceof Number) {
object.addProperty(mdAttribute.definesAttribute(), (Number) value);
} else if (value instanceof Boolean) {
object.addProperty(mdAttribute.definesAttribute(), (Boolean) value);
} else if (value instanceof String) {
object.addProperty(mdAttribute.definesAttribute(), (String) value);
} else if (value instanceof Character) {
object.addProperty(mdAttribute.definesAttribute(), (Character) value);
} else if (value instanceof Date) {
object.addProperty(mdAttribute.definesAttribute(), format.format((Date) value));
}
}
}
}
record.add("data", object);
}
}
JsonArray bbox = this.bbox(uid);
if (bbox == null || bbox.size() == 0) {
bbox = this.bbox(null);
}
record.add("bbox", bbox);
return record;
}
use of com.runwaysdk.business.Business in project geoprism-registry by terraframe.
the class ChangeRequest method getOrderedActions.
public List<AbstractAction> getOrderedActions() {
// TODO : Runway querybuilder is dumb
// QueryFactory qf = new QueryFactory();
//
// ChangeRequestQuery crq = new ChangeRequestQuery(qf);
// AbstractActionQuery aaq = new AbstractActionQuery(qf);
//
// aaq.ORDER_BY(aaq.getCreateActionDate(), SortOrder.DESC);
// aaq.WHERE(aaq.request(crq));
// aaq.WHERE(crq.getOid().EQ(this.getOid()));
//
// return aaq.getIterator().getAll();
MdRelationshipDAOIF mdRelationshipIF = MdRelationshipDAO.getMdRelationshipDAO(HasActionRelationship.CLASS);
QueryFactory queryFactory = new QueryFactory();
// Get the relationships where this object is the parent
RelationshipQuery rq = queryFactory.relationshipQuery(HasActionRelationship.CLASS);
rq.WHERE(rq.parentOid().EQ(this.getOid()));
// Now fetch the child objects
BusinessQuery bq = queryFactory.businessQuery(mdRelationshipIF.getChildMdBusiness().definesType());
bq.WHERE(bq.isChildIn(rq));
bq.ORDER_BY(bq.get(AbstractAction.CREATEACTIONDATE), SortOrder.ASC);
List<Business> bizes = bq.getIterator().getAll();
List<AbstractAction> actions = new ArrayList<AbstractAction>();
for (Business biz : bizes) {
actions.add((AbstractAction) biz);
}
return actions;
}
use of com.runwaysdk.business.Business in project geoprism-registry by terraframe.
the class MasterListExcelExporter method createDataSheet.
private void createDataSheet(Workbook workbook) {
Sheet sheet = workbook.createSheet(WorkbookUtil.createSafeSheetName(this.getList().getDisplayLabel().getValue()));
Row header = sheet.createRow(0);
// MdAttributeGeometryDAOIF geometryAttribute = (MdAttributeGeometryDAOIF)
// this.mdBusiness.definesAttribute(RegistryConstants.GEOMETRY_ATTRIBUTE_NAME);
//
// boolean includeCoordinates = ( geometryAttribute instanceof
// MdAttributePointDAOIF );
this.writeHeader(this.boldStyle, header);
int rownum = 1;
BusinessQuery query = this.version.buildQuery(this.filterJson);
query.ORDER_BY_DESC(query.aCharacter(DefaultAttribute.CODE.getName()));
OIterator<Business> objects = query.getIterator();
try {
while (objects.hasNext()) {
Business object = objects.next();
Row row = sheet.createRow(rownum++);
this.writeRow(row, object, this.dateStyle);
}
} finally {
objects.close();
}
}
Aggregations