Skip to content

Commit 38945be

Browse files
author
vrasputnis
committed
1 parent e91f844 commit 38945be

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

com.farata.cleardatabuilder.extjs.tests/scenarios/SampleProject/src/com/farata/hibernate_test/dto/CompanyDTO.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
@JSClass(kind=JSClassKind.EXT_JS)
1111
public class CompanyDTO extends com.farata.hibernate_test.dto.gen._CompanyDTO{
1212
@JSOneToMany(
13-
collectionType="com.farata.hibernate_test.collections.AssociateCollection",
13+
storeType="com.farata.hibernate_test.collections.AssociateCollection",
1414
fillArguments="id",
1515
sync=SyncType.BATCH
1616
)

com.farata.cleardatabuilder.extjs.tests/scenarios/SampleProject/src/com/farata/java_test/dto/CompanyDTO.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,11 @@ public void setCompany(String company) {
4242
this.company = company;
4343
}
4444

45-
@JSOneToMany(collectionType = "com.farata.java_test.collections.AssociateCollection", fillArguments = "id", sync = SyncType.BATCH)
45+
@JSOneToMany(
46+
storeType = "com.farata.java_test.collections.AssociateCollection",
47+
fillArguments = "id",
48+
sync = SyncType.BATCH
49+
)
4650
public List<AssociateDTO> getAssociates() {
4751
return associates;
4852
}

com.farata.cleardatabuilder.extjs.tests/scenarios/SampleProject/src/com/farata/java_test/service/IAssociateService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
@JSService
1212
public interface IAssociateService {
13-
@JSGenerateStore(collectionType="com.farata.java_test.collections.AssociateCollection")
13+
@JSGenerateStore(storeType="com.farata.java_test.collections.AssociateCollection")
1414
@JSFillMethod(autoSyncEnabled = true)
1515
List<AssociateDTO> fill(Long companyId);
1616
}

0 commit comments

Comments
 (0)