BrightSide Workbench Full Report + Source Code
org.turro.alliance.client.Projects Class Reference

Public Member Functions

Jsons project (String axId)
 
Jsons participations (String axId)
 
Jsons axParticipations (String axId)
 
Jsons axParticipations (String axId, String as)
 
Jsons axParticipations ()
 
Jsons axPendingRequests (String axId)
 
Jsons status (String axId, String contactId, String as)
 
Jsons hasRequested (String axId, String contactId, String as)
 

Static Public Member Functions

static Projects from (WsServer server)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 33 of file client/Projects.java.

Member Function Documentation

◆ axParticipations() [1/3]

Jsons org.turro.alliance.client.Projects.axParticipations ( )

Definition at line 55 of file client/Projects.java.

55  {
56  return Servers.getData(WsServer.from(server.getServerDomain(), AxServer.SERVER_SERVICE),
57  AxConstants.AXPARTICIPATIONS, Jsons.object().add("full", true));
58  }
String getServerDomain()
Definition: WsServer.java:52
Here is the call graph for this function:

◆ axParticipations() [2/3]

Jsons org.turro.alliance.client.Projects.axParticipations ( String  axId)

Definition at line 45 of file client/Projects.java.

45  {
46  return Servers.getData(WsServer.from(server.getServerDomain(), AxServer.SERVER_SERVICE),
47  AxConstants.AXPARTICIPATIONS, Jsons.object().add("id", correctId(axId)));
48  }
Here is the call graph for this function:

◆ axParticipations() [3/3]

Jsons org.turro.alliance.client.Projects.axParticipations ( String  axId,
String  as 
)

Definition at line 50 of file client/Projects.java.

50  {
51  return Servers.getData(WsServer.from(server.getServerDomain(), AxServer.SERVER_SERVICE),
52  AxConstants.AXPARTICIPATIONS, Jsons.object().add("id", correctId(axId)).add("as", as));
53  }
Here is the call graph for this function:

◆ axPendingRequests()

Jsons org.turro.alliance.client.Projects.axPendingRequests ( String  axId)

Definition at line 60 of file client/Projects.java.

60  {
61  return Servers.getData(WsServer.from(server.getServerDomain(), AxServer.SERVER_SERVICE),
62  AxConstants.AXPENDING_REQUESTS, Jsons.object().add("id", correctId(axId)));
63  }
Here is the call graph for this function:

◆ from()

static Projects org.turro.alliance.client.Projects.from ( WsServer  server)
static

Definition at line 93 of file client/Projects.java.

93  {
94  return new Projects(server);
95  }
Here is the caller graph for this function:

◆ hasRequested()

Jsons org.turro.alliance.client.Projects.hasRequested ( String  axId,
String  contactId,
String  as 
)

Definition at line 73 of file client/Projects.java.

73  {
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))
78  .add("as", as));
79  }
Here is the call graph for this function:

◆ participations()

Jsons org.turro.alliance.client.Projects.participations ( String  axId)

Definition at line 40 of file client/Projects.java.

40  {
41  return Servers.getData(WsServer.from(server.getServerDomain(), AxServer.SERVER_SERVICE),
42  AxConstants.PARTICIPATIONS, Jsons.object().add("id", correctId(axId)));
43  }
Here is the call graph for this function:

◆ project()

Jsons org.turro.alliance.client.Projects.project ( String  axId)

Definition at line 35 of file client/Projects.java.

35  {
36  return Servers.getData(WsServer.from(server.getServerDomain(), AxServer.SERVER_SERVICE),
37  AxConstants.PROJECT, Jsons.object().add("id", correctId(axId)));
38  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ status()

Jsons org.turro.alliance.client.Projects.status ( String  axId,
String  contactId,
String  as 
)

Definition at line 65 of file client/Projects.java.

65  {
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))
70  .add("as", as));
71  }
Here is the call graph for this function:

The documentation for this class was generated from the following file: