◆ axParticipations() [1/3]
Jsons org.turro.alliance.client.Projects.axParticipations |
( |
| ) |
|
Definition at line 55 of file client/Projects.java.
56 return Servers.getData(WsServer.from(server.
getServerDomain(), AxServer.SERVER_SERVICE),
57 AxConstants.AXPARTICIPATIONS, Jsons.object().add(
"full",
true));
◆ axParticipations() [2/3]
Jsons org.turro.alliance.client.Projects.axParticipations |
( |
String |
axId | ) |
|
Definition at line 45 of file client/Projects.java.
46 return Servers.getData(WsServer.from(server.
getServerDomain(), AxServer.SERVER_SERVICE),
47 AxConstants.AXPARTICIPATIONS, Jsons.object().add(
"id", correctId(axId)));
◆ axParticipations() [3/3]
Jsons org.turro.alliance.client.Projects.axParticipations |
( |
String |
axId, |
|
|
String |
as |
|
) |
| |
Definition at line 50 of file client/Projects.java.
51 return Servers.getData(WsServer.from(server.
getServerDomain(), AxServer.SERVER_SERVICE),
52 AxConstants.AXPARTICIPATIONS, Jsons.object().add(
"id", correctId(axId)).add(
"as", as));
◆ axPendingRequests()
Jsons org.turro.alliance.client.Projects.axPendingRequests |
( |
String |
axId | ) |
|
Definition at line 60 of file client/Projects.java.
61 return Servers.getData(WsServer.from(server.
getServerDomain(), AxServer.SERVER_SERVICE),
62 AxConstants.AXPENDING_REQUESTS, Jsons.object().add(
"id", correctId(axId)));
◆ from()
◆ hasRequested()
Jsons org.turro.alliance.client.Projects.hasRequested |
( |
String |
axId, |
|
|
String |
contactId, |
|
|
String |
as |
|
) |
| |
Definition at line 73 of file client/Projects.java.
74 return Servers.getData(WsServer.from(server.
getServerDomain(), AxServer.SERVER_SERVICE),
75 AxConstants.AXPARTICIPATION_REQUESTED, Jsons.object()
76 .add(
"contactId", contactId)
77 .add(
"axId", correctId(axId))
◆ participations()
Jsons org.turro.alliance.client.Projects.participations |
( |
String |
axId | ) |
|
Definition at line 40 of file client/Projects.java.
41 return Servers.getData(WsServer.from(server.
getServerDomain(), AxServer.SERVER_SERVICE),
42 AxConstants.PARTICIPATIONS, Jsons.object().add(
"id", correctId(axId)));
◆ project()
Jsons org.turro.alliance.client.Projects.project |
( |
String |
axId | ) |
|
Definition at line 35 of file client/Projects.java.
36 return Servers.getData(WsServer.from(server.
getServerDomain(), AxServer.SERVER_SERVICE),
37 AxConstants.PROJECT, Jsons.object().add(
"id", correctId(axId)));
◆ status()
Jsons org.turro.alliance.client.Projects.status |
( |
String |
axId, |
|
|
String |
contactId, |
|
|
String |
as |
|
) |
| |
Definition at line 65 of file client/Projects.java.
66 return Servers.getData(WsServer.from(server.
getServerDomain(), AxServer.SERVER_SERVICE),
67 AxConstants.AXPARTICIPATION_STATUS, Jsons.object()
68 .add(
"contactId", contactId)
69 .add(
"axId", correctId(axId))
The documentation for this class was generated from the following file: