BrightSide Workbench Full Report + Source Code
org.turro.plugin.contacts.SoftContact Class Reference
Collaboration diagram for org.turro.plugin.contacts.SoftContact:

Public Member Functions

boolean isValid ()
 
Object getContact ()
 
boolean isAccepted ()
 
boolean isValid ()
 
Object getContact ()
 
boolean isAccepted ()
 

Public Attributes

IContact contact
 
String author
 
String author_email
 
String author_web
 
String author_ip
 

Detailed Description

Member Function Documentation

◆ getContact() [1/2]

Object org.turro.plugin.contacts.SoftContact.getContact ( )

◆ getContact() [2/2]

Object org.turro.plugin.contacts.SoftContact.getContact ( )

Definition at line 40 of file elephant/src/main/java/org/turro/plugin/contacts/SoftContact.java.

40  {
41  return contact != null ? contact.getContact() : null;
42  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ isAccepted() [1/2]

boolean org.turro.plugin.contacts.SoftContact.isAccepted ( )

Definition at line 44 of file elephant-plugins/src/main/java/org/turro/plugin/contacts/SoftContact.java.

44  {
45  return contact != null && contact.isValid();
46  }
Here is the call graph for this function:

◆ isAccepted() [2/2]

boolean org.turro.plugin.contacts.SoftContact.isAccepted ( )

Definition at line 44 of file elephant/src/main/java/org/turro/plugin/contacts/SoftContact.java.

44  {
45  return contact != null && contact.isValid();
46  }
Here is the call graph for this function:

◆ isValid() [1/2]

boolean org.turro.plugin.contacts.SoftContact.isValid ( )

Definition at line 35 of file elephant-plugins/src/main/java/org/turro/plugin/contacts/SoftContact.java.

35  {
36  return !Strings.isBlank(author_ip) ||
37  (contact != null && contact.isValid());
38  }
Here is the call graph for this function:

◆ isValid() [2/2]

boolean org.turro.plugin.contacts.SoftContact.isValid ( )

Definition at line 35 of file elephant/src/main/java/org/turro/plugin/contacts/SoftContact.java.

35  {
36  return !Strings.isBlank(author_ip) ||
37  (contact != null && contact.isValid());
38  }
Here is the call graph for this function:
Here is the caller graph for this function:

Member Data Documentation

◆ author

String org.turro.plugin.contacts.SoftContact.author

◆ author_email

String org.turro.plugin.contacts.SoftContact.author_email

◆ author_ip

String org.turro.plugin.contacts.SoftContact.author_ip

◆ author_web

String org.turro.plugin.contacts.SoftContact.author_web

◆ contact

IContact org.turro.plugin.contacts.SoftContact.contact

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