BrightSide Workbench Full Report + Source Code
org.turro.elephant.entities.db.PushSubscription Class Reference
Inheritance diagram for org.turro.elephant.entities.db.PushSubscription:
Collaboration diagram for org.turro.elephant.entities.db.PushSubscription:

Public Member Functions

String getContactId ()
 
void setContactId (String contactId)
 
String getEndpoint ()
 
void setEndpoint (String endpoint)
 
String getPublicKey ()
 
void setPublicKey (String publicKey)
 
String getPrivateKey ()
 
void setPrivateKey (String privateKey)
 
IContact getIContact ()
 

Detailed Description

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

Definition at line 34 of file PushSubscription.java.

Member Function Documentation

◆ getContactId()

String org.turro.elephant.entities.db.PushSubscription.getContactId ( )

Definition at line 43 of file PushSubscription.java.

43  {
44  return contactId;
45  }

◆ getEndpoint()

String org.turro.elephant.entities.db.PushSubscription.getEndpoint ( )

Definition at line 51 of file PushSubscription.java.

51  {
52  return endpoint;
53  }
Here is the caller graph for this function:

◆ getIContact()

IContact org.turro.elephant.entities.db.PushSubscription.getIContact ( )

Definition at line 79 of file PushSubscription.java.

79  {
80  if(_contact == null) {
81  _contact = Contacts.getContactById(contactId);
82  }
83  return _contact;
84  }
Here is the call graph for this function:

◆ getPrivateKey()

String org.turro.elephant.entities.db.PushSubscription.getPrivateKey ( )

Definition at line 67 of file PushSubscription.java.

67  {
68  return privateKey;
69  }
Here is the caller graph for this function:

◆ getPublicKey()

String org.turro.elephant.entities.db.PushSubscription.getPublicKey ( )

Definition at line 59 of file PushSubscription.java.

59  {
60  return publicKey;
61  }
Here is the caller graph for this function:

◆ setContactId()

void org.turro.elephant.entities.db.PushSubscription.setContactId ( String  contactId)

Definition at line 47 of file PushSubscription.java.

47  {
48  this.contactId = contactId;
49  }
Here is the caller graph for this function:

◆ setEndpoint()

void org.turro.elephant.entities.db.PushSubscription.setEndpoint ( String  endpoint)

Definition at line 55 of file PushSubscription.java.

55  {
56  this.endpoint = endpoint;
57  }
Here is the caller graph for this function:

◆ setPrivateKey()

void org.turro.elephant.entities.db.PushSubscription.setPrivateKey ( String  privateKey)

Definition at line 71 of file PushSubscription.java.

71  {
72  this.privateKey = privateKey;
73  }
Here is the caller graph for this function:

◆ setPublicKey()

void org.turro.elephant.entities.db.PushSubscription.setPublicKey ( String  publicKey)

Definition at line 63 of file PushSubscription.java.

63  {
64  this.publicKey = publicKey;
65  }
Here is the caller graph for this function:

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