2
Fork 0

wip made remote ejb working over http

This commit is contained in:
Willem Cazander 2012-11-21 20:45:08 +01:00
parent d4e537a2bf
commit 2a0d992642
393 changed files with 8916 additions and 3872 deletions

View file

@ -3,7 +3,7 @@
<parent>
<artifactId>vasc</artifactId>
<groupId>net.forwardfire.vasc</groupId>
<version>0.3.5-SNAPSHOT</version>
<version>0.4.1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>vasc-test</artifactId>

View file

@ -3,7 +3,7 @@
<parent>
<artifactId>vasc-test</artifactId>
<groupId>net.forwardfire.vasc.test</groupId>
<version>0.3.5-SNAPSHOT</version>
<version>0.4.1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>vasc-test-frontend-data</artifactId>

View file

@ -33,9 +33,9 @@ import net.forwardfire.vasc.backend.AbstractVascBackend;
import net.forwardfire.vasc.backend.VascBackendState;
import net.forwardfire.vasc.core.VascEntry;
import net.forwardfire.vasc.core.VascEntryField;
import net.forwardfire.vasc.core.VascException;
import net.forwardfire.vasc.core.entry.VascEntryFieldValue;
import net.forwardfire.vasc.core.entry.VascEntryRecordCreator;
import net.forwardfire.vasc.core.VascException;
import net.forwardfire.vasc.impl.entry.BeanPropertyVascEntryFieldValue;
import net.forwardfire.vasc.impl.entry.BeanVascEntryRecordCreator;

View file

@ -3,7 +3,7 @@
<parent>
<artifactId>vasc-test</artifactId>
<groupId>net.forwardfire.vasc.test</groupId>
<version>0.3.5-SNAPSHOT</version>
<version>0.4.1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>vasc-test-i18n</artifactId>

View file

@ -92,12 +92,12 @@ public class VascBundleCheckEntryKeys {
for (VascAction a:ve.getRowActions()) {
keys.put(a.getName(), a.getId());
keys.put(a.getDescription(), a.getId());
keys.put(a.getImage(), a.getId());
keys.put(a.getImage(), a.getId());
}
for (VascAction a:ve.getColumnActions()) {
keys.put(a.getName(), a.getId());
keys.put(a.getDescription(), a.getId());
keys.put(a.getImage(), a.getId());
keys.put(a.getImage(), a.getId());
}
return keys;
}
@ -168,4 +168,4 @@ public class VascBundleCheckEntryKeys {
public void setImagePostfix(String imagePostfix) {
this.imagePostfix = imagePostfix;
}
}
}