| package de.spintegration.mock.examples; |
| |
| import java.util.Vector; |
| |
| import java.util.Iterator; |
| |
| import lotus.domino.NotesException; |
| |
| import de.spintegration.notes.mock.AgentBase; |
| import de.spintegration.notes.mock.AgentInfo; |
| import de.spintegration.notes.mock.Database; |
| import de.spintegration.notes.mock.Document; |
| import de.spintegration.notes.mock.DocumentCollection; |
| import de.spintegration.notes.mock.Item; |
| import de.spintegration.notes.mock.MockFactory; |
| import de.spintegration.notes.mock.View; |
| import de.spintegration.notes.mock.ViewColumn; |
| |
| |
| |
| |
| |
| public class SimpleAgent extends AgentBase { |
| |
| |
| |
| |
| |
| public void NotesMain() { |
| try { |
| System.out.println ("********************************"); |
| System.out.println ("SESSION.GETNOTESVERSION :-). "); |
| System.out.println ("********************************"); |
| |
| System.out.println(session.getNotesVersion()); |
| Database dbCur = agentContext.getCurrentDatabase(); |
| View vw1 = dbCur.getView("ansicht1"); |
| |
| |
| System.out.println ("********************************"); |
| System.out.println ("ANSICHT"); |
| System.out.println ("********************************"); |
| |
| System.out.println(vw1.prettyPrint()); |
| |
| Document docAfro = vw1.getDocumentByKey("Afrika"); |
| Vector itemAfro = docAfro.getItems(); |
| Iterator itItemAfro = itemAfro.iterator(); |
| |
| System.out.println ("********************************"); |
| System.out.println ("FELDWERTE DES PER DOKUMENT-by-Key(Afrika) gefundenen Dokuments"); |
| System.out.println ("********************************"); |
| |
| while (itItemAfro.hasNext()) { |
| String fieldName = itItemAfro.next().toString(); |
| Item item = docAfro.getFirstItem(fieldName); |
| System.out.println(item.getName() + "-->" + item.getValues()); |
| } |
| |
| System.out.println ("********************************"); |
| System.out.println ("KONGO-Dokument einfügen"); |
| System.out.println ("UND BEACHTET WIE SICH DAS EINSORTIERT, KONTINENT UND LAND SIND SORTIERTE SPALTEN,s. main Methode oben"); |
| System.out.println ("********************************"); |
| |
| |
| Document docNewAfro = dbCur.createDocument(); |
| docNewAfro.replaceItemValue("form", "maske5"); |
| docNewAfro.replaceItemValue("kontinent", "Afrika"); |
| docNewAfro.replaceItemValue("land", "Kongo"); |
| docNewAfro.replaceItemValue("staedte", "Kinshasa"); |
| docNewAfro.save(); |
| |
| System.out.println(vw1.prettyPrint()); |
| |
| |
| System.out.println ("********************************"); |
| System.out.println ("Dokument Collection-> GIBT JA JETZT 2 DOKUMENTE MIT KEY AFRIKA"); |
| System.out.println ("********************************"); |
| |
| DocumentCollection colAfro = vw1.getAllDocumentsByKey("Afrika"); |
| docAfro = colAfro.getFirstDocument(); |
| |
| while (docAfro != null) { |
| itemAfro = docAfro.getItems(); |
| itItemAfro = itemAfro.iterator(); |
| |
| System.out.println ("********************************"); |
| System.out.println ("Dokument IN Collection"); |
| System.out.println ("********************************"); |
| |
| while (itItemAfro.hasNext()) { |
| String fieldName = itItemAfro.next().toString(); |
| Item item = docAfro.getFirstItem(fieldName); |
| System.out.println(item.getName() + "-->" + item.getValues()); |
| } |
| |
| docAfro = colAfro.getNextDocument(); |
| } |
| |
| |
| |
| |
| } catch (NotesException e) { |
| |
| e.printStackTrace(); |
| } |
| |
| |
| } |
| |
| public static void main (String[] args) throws NotesException { |
| |
| |
| |
| |
| |
| MockFactory fac = MockFactory.getInstance(); |
| Database parentDatabase = fac.getDatabase("test", "test.nsf"); |
| |
| |
| View vw1 = fac.addView(parentDatabase, "ansicht1", "@all"); |
| fac.addViewColumn(vw1, "form", "form"); |
| fac.addViewColumn(vw1, "kontinent", "kontinent", ViewColumn.SORT_ASCENDING); |
| fac.addViewColumn(vw1, "land", "land", ViewColumn.SORT_ASCENDING); |
| fac.addViewColumn(vw1, "städte", "staedte"); |
| |
| |
| |
| Document doc1 = fac.addDocumentWithForm(parentDatabase, "maske1"); |
| doc1.replaceItemValue("kontinent", "Europa"); |
| doc1.replaceItemValue("land", "Deutschland"); |
| Vector vecStädteDoc1 = new Vector(); |
| vecStädteDoc1.add("Köln"); |
| vecStädteDoc1.add("Hannover"); |
| vecStädteDoc1.add("Frankfurt"); |
| doc1.replaceItemValue("staedte", vecStädteDoc1); |
| doc1.save(); |
| |
| Document doc2 = fac.addDocumentWithForm(parentDatabase, "maske2"); |
| doc2.replaceItemValue("kontinent", "Europa"); |
| doc2.replaceItemValue("land", "Groß Britannien"); |
| Vector vecStädteDoc2 = new Vector(); |
| vecStädteDoc2.add("London"); |
| vecStädteDoc2.add("Glasgow"); |
| vecStädteDoc2.add("Manchester"); |
| doc2.replaceItemValue("staedte", vecStädteDoc2); |
| doc2.save(); |
| |
| Document doc3 = fac.addDocumentWithForm(parentDatabase, "maske3"); |
| doc3.replaceItemValue("kontinent", "Amerika"); |
| doc3.replaceItemValue("land", "Argentinien"); |
| Vector vecStädteDoc3 = new Vector(); |
| vecStädteDoc3.add("Buenos Aires"); |
| vecStädteDoc3.add("Cordoba"); |
| vecStädteDoc3.add("Mendoza"); |
| doc3.replaceItemValue("staedte", vecStädteDoc3); |
| doc3.save(); |
| |
| Document doc4 = fac.addDocumentWithForm(parentDatabase, "maske4"); |
| doc4.replaceItemValue("kontinent", "Asien"); |
| doc4.replaceItemValue("land", "Indien"); |
| Vector vecStädteDoc4 = new Vector(); |
| vecStädteDoc4.add("Mumbai"); |
| vecStädteDoc4.add("Kalkutta"); |
| vecStädteDoc4.add("Bangalore"); |
| doc4.replaceItemValue("staedte", vecStädteDoc4); |
| doc4.save(); |
| |
| Document doc5 = fac.addDocumentWithForm(parentDatabase, "maske5"); |
| doc5.replaceItemValue("kontinent", "Afrika"); |
| doc5.replaceItemValue("land", "Maroko"); |
| Vector vecStädteDoc5 = new Vector(); |
| vecStädteDoc5.add("Marakesch"); |
| vecStädteDoc5.add("Fes"); |
| vecStädteDoc5.add("Rabat"); |
| doc5.replaceItemValue("staedte", vecStädteDoc5); |
| doc5.save(); |
| |
| |
| AgentInfo agInfo = new AgentInfo(fac); |
| agInfo.setCurrentDatabase(parentDatabase); |
| |
| |
| |
| SimpleAgent sa = new SimpleAgent(); |
| sa.startup(agInfo); |
| } |
| |
| } |