wip made remote ejb working over http
This commit is contained in:
parent
d4e537a2bf
commit
2a0d992642
393 changed files with 8916 additions and 3872 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue