Einige Query-Aufrufe korrigiert. Diese verwiesen noch auf das Model com.arsdigita.london.portal statt auf
com.arsdigita.portalworkspace git-svn-id: https://svn.libreccm.org/ccm/trunk@1883 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
04ae9b5867
commit
a4090e4220
|
|
@ -575,7 +575,7 @@ public class Workspace extends Application {
|
||||||
// .retrieve("com.arsdigita.kernel.Party");
|
// .retrieve("com.arsdigita.kernel.Party");
|
||||||
Filter f = dc.addNotInSubqueryFilter(
|
Filter f = dc.addNotInSubqueryFilter(
|
||||||
"id",
|
"id",
|
||||||
"com.arsdigita.london.portal.WorkspaceParticipantIDs");
|
"com.arsdigita.portalworkspace.WorkspaceParticipantIDs");
|
||||||
f.set("workspaceID", getID());
|
f.set("workspaceID", getID());
|
||||||
return new PartyCollection(dc);
|
return new PartyCollection(dc);
|
||||||
}
|
}
|
||||||
|
|
@ -594,7 +594,7 @@ public class Workspace extends Application {
|
||||||
**/
|
**/
|
||||||
public Iterator getParticipantInitials() {
|
public Iterator getParticipantInitials() {
|
||||||
DataQuery query = SessionManager.getSession().retrieveQuery(
|
DataQuery query = SessionManager.getSession().retrieveQuery(
|
||||||
"com.arsdigita.london.portal.WorkspaceParticipantInitials");
|
"com.arsdigita.portalworkspace.WorkspaceParticipantInitials");
|
||||||
query.setParameter("workspaceID", getID());
|
query.setParameter("workspaceID", getID());
|
||||||
|
|
||||||
LinkedList result = new LinkedList();
|
LinkedList result = new LinkedList();
|
||||||
|
|
@ -750,7 +750,7 @@ public class Workspace extends Application {
|
||||||
|
|
||||||
public WorkspaceCollection getChildWorkspaces() {
|
public WorkspaceCollection getChildWorkspaces() {
|
||||||
DataQuery query = SessionManager.getSession().retrieveQuery(
|
DataQuery query = SessionManager.getSession().retrieveQuery(
|
||||||
"com.arsdigita.london.portal.childWorkspacesForApplicationID");
|
"com.arsdigita.portalworkspace.childWorkspacesForApplicationID");
|
||||||
query.setParameter("applicationID", getID());
|
query.setParameter("applicationID", getID());
|
||||||
|
|
||||||
DataCollection collection =
|
DataCollection collection =
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue