use of com.agiletec.aps.system.common.entity.model.attribute.MonoListAttribute in project entando-core by entando.
the class ListAttributeAction method removeListElement.
@Override
public String removeListElement() {
IApsEntity entity = this.getCurrentApsEntity();
try {
int elementIndex = this.getElementIndex();
ListAttributeInterface currentAttribute = (ListAttributeInterface) entity.getAttribute(this.getAttributeName());
if (currentAttribute instanceof MonoListAttribute) {
((MonoListAttribute) currentAttribute).removeAttribute(elementIndex);
} else if (currentAttribute instanceof ListAttribute) {
((ListAttribute) currentAttribute).removeAttribute(this.getListLangCode(), elementIndex);
}
_logger.debug("Element oy type {} removed fomr the list {}", currentAttribute.getNestedAttributeTypeCode(), currentAttribute.getName());
} catch (Throwable t) {
_logger.error("error in removeListElement", t);
// ApsSystemUtils.logThrowable(t, this, "removeListElement");
return FAILURE;
}
return SUCCESS;
}
use of com.agiletec.aps.system.common.entity.model.attribute.MonoListAttribute in project entando-core by entando.
the class ListAttributeAction method moveListElement.
@Override
public String moveListElement() {
IApsEntity entity = this.getCurrentApsEntity();
try {
int elementIndex = this.getElementIndex();
ListAttributeInterface currentAttribute = (ListAttributeInterface) entity.getAttribute(this.getAttributeName());
if (currentAttribute instanceof MonoListAttribute) {
List<AttributeInterface> monoList = ((MonoListAttribute) currentAttribute).getAttributes();
this.moveListElement(monoList, elementIndex, this.getMovement());
} else if (currentAttribute instanceof ListAttribute) {
List<AttributeInterface> list = ((ListAttribute) currentAttribute).getAttributeList(this.getListLangCode());
this.moveListElement(list, elementIndex, this.getMovement());
}
_logger.debug("Moved element of type {} of the list {} in the position {} with a '{}' movement ", currentAttribute.getNestedAttributeTypeCode(), currentAttribute.getName(), elementIndex, this.getMovement());
} catch (Throwable t) {
_logger.error("error in moveListElement", t);
// ApsSystemUtils.logThrowable(t, this, "moveListElement");
return FAILURE;
}
return SUCCESS;
}
use of com.agiletec.aps.system.common.entity.model.attribute.MonoListAttribute in project entando-core by entando.
the class ListAttributeAction method addListElement.
@Override
public String addListElement() {
IApsEntity entity = this.getCurrentApsEntity();
try {
ListAttributeInterface currentAttribute = (ListAttributeInterface) entity.getAttribute(this.getAttributeName());
if (currentAttribute instanceof MonoListAttribute) {
((MonoListAttribute) currentAttribute).addAttribute();
} else if (currentAttribute instanceof ListAttribute) {
((ListAttribute) currentAttribute).addAttribute(this.getListLangCode());
}
_logger.debug("Added element of type {} to the list {}", currentAttribute.getNestedAttributeTypeCode(), currentAttribute.getName());
} catch (Throwable t) {
_logger.error("error in addListElement", t);
// ApsSystemUtils.logThrowable(t, this, "addListElement");
return FAILURE;
}
return SUCCESS;
}
use of com.agiletec.aps.system.common.entity.model.attribute.MonoListAttribute in project entando-core by entando.
the class TestDataObjectManager method testLoadDataObject.
public void testLoadDataObject() throws Throwable {
DataObject dataObject = this._dataObjectManager.loadDataObject("ART111", false);
assertEquals(DataObject.STATUS_PUBLIC, dataObject.getStatus());
assertEquals("coach", dataObject.getMainGroup());
assertEquals(2, dataObject.getGroups().size());
assertTrue(dataObject.getGroups().contains("customers"));
assertTrue(dataObject.getGroups().contains("helpdesk"));
Map<String, AttributeInterface> attributes = dataObject.getAttributeMap();
assertEquals(5, attributes.size());
TextAttribute title = (TextAttribute) attributes.get("Titolo");
assertEquals("Titolo Contenuto 3 Coach", title.getTextForLang("it"));
assertNull(title.getTextForLang("en"));
MonoListAttribute authors = (MonoListAttribute) attributes.get("Autori");
assertEquals(4, authors.getAttributes().size());
HypertextAttribute hypertext = (HypertextAttribute) attributes.get("CorpoTesto");
assertEquals("<p>Corpo Testo Contenuto 3 Coach</p>", hypertext.getTextForLang("it").trim());
assertNull(hypertext.getTextForLang("en"));
DateAttribute date = (DateAttribute) attributes.get("Data");
assertEquals("13/12/2006", DateConverter.getFormattedDate(date.getDate(), "dd/MM/yyyy"));
}
use of com.agiletec.aps.system.common.entity.model.attribute.MonoListAttribute in project entando-core by entando.
the class TestDataObjectManager method testLoadFullDataObject.
public void testLoadFullDataObject() throws Throwable {
DataObject dataObject = this._dataObjectManager.loadDataObject("ALL4", false);
assertEquals(DataObject.STATUS_PUBLIC, dataObject.getStatus());
assertEquals(Group.FREE_GROUP_NAME, dataObject.getMainGroup());
assertEquals(0, dataObject.getGroups().size());
Map<String, AttributeInterface> attributes = dataObject.getAttributeMap();
assertEquals(37, attributes.size());
CheckBoxAttribute checkBoxAttribute = (CheckBoxAttribute) attributes.get("CheckBox");
assertNotNull(checkBoxAttribute);
assertNull(checkBoxAttribute.getBooleanValue());
DateAttribute dateAttribute = (DateAttribute) attributes.get("Date");
assertNotNull(dateAttribute);
assertEquals("20100321", DateConverter.getFormattedDate(dateAttribute.getDate(), "yyyyMMdd"));
DateAttribute dateAttribute2 = (DateAttribute) attributes.get("Date2");
assertNotNull(dateAttribute2);
assertEquals("20120321", DateConverter.getFormattedDate(dateAttribute2.getDate(), "yyyyMMdd"));
EnumeratorAttribute enumeratorAttribute = (EnumeratorAttribute) attributes.get("Enumerator");
assertNotNull(enumeratorAttribute);
assertEquals("a", enumeratorAttribute.getText());
EnumeratorMapAttribute enumeratorMapAttribute = (EnumeratorMapAttribute) attributes.get("EnumeratorMap");
assertNotNull(enumeratorMapAttribute);
assertEquals("02", enumeratorMapAttribute.getMapKey());
assertEquals("Value 2", enumeratorMapAttribute.getMapValue());
HypertextAttribute hypertextAttribute = (HypertextAttribute) attributes.get("Hypertext");
assertNotNull(hypertextAttribute);
assertEquals("<p>text Hypertext</p>", hypertextAttribute.getTextForLang("it"));
TextAttribute longtextAttribute = (TextAttribute) attributes.get("Longtext");
assertNotNull(longtextAttribute);
assertEquals("text Longtext", longtextAttribute.getTextForLang("it"));
MonoTextAttribute monoTextAttribute = (MonoTextAttribute) attributes.get("Monotext");
assertNotNull(monoTextAttribute);
assertEquals("text Monotext", monoTextAttribute.getText());
MonoTextAttribute monoTextAttribute2 = (MonoTextAttribute) attributes.get("Monotext2");
assertNotNull(monoTextAttribute2);
assertEquals("aaaa@entando.com", monoTextAttribute2.getText());
NumberAttribute numberAttribute = (NumberAttribute) attributes.get("Number");
assertNotNull(numberAttribute);
assertEquals(25, numberAttribute.getValue().intValue());
NumberAttribute numberAttribute2 = (NumberAttribute) attributes.get("Number2");
assertNotNull(numberAttribute2);
assertEquals(85, numberAttribute2.getValue().intValue());
TextAttribute textAttribute = (TextAttribute) attributes.get("Text");
assertNotNull(textAttribute);
assertEquals("text Text", textAttribute.getTextForLang("it"));
TextAttribute textAttribute2 = (TextAttribute) attributes.get("Text2");
assertNotNull(textAttribute2);
assertEquals("bbbb@entando.com", textAttribute2.getTextForLang("it"));
ThreeStateAttribute threeStateAttribute = (ThreeStateAttribute) attributes.get("ThreeState");
assertNotNull(threeStateAttribute);
assertEquals(Boolean.FALSE, threeStateAttribute.getBooleanValue());
CompositeAttribute compositeAttribute = (CompositeAttribute) attributes.get("Composite");
assertNotNull(compositeAttribute);
assertEquals(10, compositeAttribute.getAttributeMap().size());
ListAttribute listAttribute1 = (ListAttribute) attributes.get("ListBoolea");
assertNotNull(listAttribute1);
assertEquals(2, listAttribute1.getAttributeList("it").size());
ListAttribute listAttribute2 = (ListAttribute) attributes.get("ListCheck");
assertNotNull(listAttribute2);
assertEquals(2, listAttribute2.getAttributeList("it").size());
ListAttribute listAttribute3 = (ListAttribute) attributes.get("ListDate");
assertNotNull(listAttribute3);
assertEquals(2, listAttribute3.getAttributeList("it").size());
ListAttribute listAttribute4 = (ListAttribute) attributes.get("ListEnum");
assertNotNull(listAttribute4);
assertEquals(2, listAttribute4.getAttributeList("it").size());
ListAttribute listAttribute5 = (ListAttribute) attributes.get("ListMonot");
assertNotNull(listAttribute5);
assertEquals(2, listAttribute5.getAttributeList("it").size());
ListAttribute listAttribute6 = (ListAttribute) attributes.get("ListNumber");
assertNotNull(listAttribute6);
assertEquals(2, listAttribute6.getAttributeList("it").size());
ListAttribute listAttribute7 = (ListAttribute) attributes.get("List3Stat");
assertNotNull(listAttribute7);
assertEquals(3, listAttribute7.getAttributeList("it").size());
MonoListAttribute monoListAttribute2 = (MonoListAttribute) attributes.get("MonoLBool");
assertNotNull(monoListAttribute2);
assertEquals(2, monoListAttribute2.getAttributes().size());
MonoListAttribute monoListAttribute3 = (MonoListAttribute) attributes.get("MonoLChec");
assertNotNull(monoListAttribute3);
assertEquals(2, monoListAttribute3.getAttributes().size());
MonoListAttribute monoListAttribute4 = (MonoListAttribute) attributes.get("MonoLCom");
assertNotNull(monoListAttribute4);
assertEquals(1, monoListAttribute4.getAttributes().size());
MonoListAttribute monoListAttribute5 = (MonoListAttribute) attributes.get("MonoLCom2");
assertNotNull(monoListAttribute5);
assertEquals(2, monoListAttribute5.getAttributes().size());
MonoListAttribute monoListAttribute6 = (MonoListAttribute) attributes.get("MonoLDate");
assertNotNull(monoListAttribute6);
assertEquals(2, monoListAttribute6.getAttributes().size());
MonoListAttribute monoListAttribute7 = (MonoListAttribute) attributes.get("MonoLEnum");
assertNotNull(monoListAttribute7);
assertEquals(2, monoListAttribute7.getAttributes().size());
MonoListAttribute monoListAttribute8 = (MonoListAttribute) attributes.get("MonoLHyper");
assertNotNull(monoListAttribute8);
assertEquals(2, monoListAttribute8.getAttributes().size());
MonoListAttribute monoListAttribute11 = (MonoListAttribute) attributes.get("MonoLLong");
assertNotNull(monoListAttribute11);
assertEquals(1, monoListAttribute11.getAttributes().size());
MonoListAttribute monoListAttribute12 = (MonoListAttribute) attributes.get("MonoLMonot");
assertNotNull(monoListAttribute12);
assertEquals(2, monoListAttribute12.getAttributes().size());
MonoListAttribute monoListAttribute13 = (MonoListAttribute) attributes.get("MonoLNumb");
assertNotNull(monoListAttribute13);
assertEquals(2, monoListAttribute13.getAttributes().size());
MonoListAttribute monoListAttribute14 = (MonoListAttribute) attributes.get("MonoLText");
assertNotNull(monoListAttribute14);
assertEquals(2, monoListAttribute14.getAttributes().size());
MonoListAttribute monoListAttribute15 = (MonoListAttribute) attributes.get("MonoL3stat");
assertNotNull(monoListAttribute15);
assertEquals(3, monoListAttribute15.getAttributes().size());
EnumeratorMapAttribute enumeratorMapAttribute2 = (EnumeratorMapAttribute) attributes.get("EnumeratorMapBis");
assertNotNull(enumeratorMapAttribute2);
assertEquals("01", enumeratorMapAttribute2.getMapKey());
assertEquals("Value 1 Bis", enumeratorMapAttribute2.getMapValue());
}
Aggregations