BrightSide Workbench Full Report + Source Code
org.turro.crm.entity.TouchPoint Class Reference
Inheritance diagram for org.turro.crm.entity.TouchPoint:
Collaboration diagram for org.turro.crm.entity.TouchPoint:

Public Member Functions

boolean isEndsSale ()
 
void setEndsSale (boolean endsSale)
 
long getId ()
 
void setId (long id)
 
String getName ()
 
void setName (String name)
 
boolean isPositive ()
 
void setPositive (boolean positive)
 
String getTags ()
 
void setTags (String tags)
 
int getTouchDegree ()
 
void setTouchDegree (int touchDegree)
 
boolean isValid ()
 

Detailed Description

Author
llturro

Definition at line 11 of file TouchPoint.java.

Member Function Documentation

◆ getId()

long org.turro.crm.entity.TouchPoint.getId ( )

Definition at line 36 of file TouchPoint.java.

36  {
37  return id;
38  }

◆ getName()

String org.turro.crm.entity.TouchPoint.getName ( )

Definition at line 44 of file TouchPoint.java.

44  {
45  return name;
46  }
Here is the caller graph for this function:

◆ getTags()

String org.turro.crm.entity.TouchPoint.getTags ( )

Definition at line 60 of file TouchPoint.java.

60  {
61  return tags;
62  }

◆ getTouchDegree()

int org.turro.crm.entity.TouchPoint.getTouchDegree ( )

Definition at line 68 of file TouchPoint.java.

68  {
69  return touchDegree;
70  }

◆ isEndsSale()

boolean org.turro.crm.entity.TouchPoint.isEndsSale ( )

Definition at line 28 of file TouchPoint.java.

28  {
29  return endsSale;
30  }

◆ isPositive()

boolean org.turro.crm.entity.TouchPoint.isPositive ( )

Definition at line 52 of file TouchPoint.java.

52  {
53  return positive;
54  }
Here is the caller graph for this function:

◆ isValid()

boolean org.turro.crm.entity.TouchPoint.isValid ( )

Definition at line 78 of file TouchPoint.java.

78  {
79  return !Strings.isBlank(name);
80  }
Here is the caller graph for this function:

◆ setEndsSale()

void org.turro.crm.entity.TouchPoint.setEndsSale ( boolean  endsSale)

Definition at line 32 of file TouchPoint.java.

32  {
33  this.endsSale = endsSale;
34  }

◆ setId()

void org.turro.crm.entity.TouchPoint.setId ( long  id)

Definition at line 40 of file TouchPoint.java.

40  {
41  this.id = id;
42  }

◆ setName()

void org.turro.crm.entity.TouchPoint.setName ( String  name)

Definition at line 48 of file TouchPoint.java.

48  {
49  this.name = name;
50  }

◆ setPositive()

void org.turro.crm.entity.TouchPoint.setPositive ( boolean  positive)

Definition at line 56 of file TouchPoint.java.

56  {
57  this.positive = positive;
58  }

◆ setTags()

void org.turro.crm.entity.TouchPoint.setTags ( String  tags)

Definition at line 64 of file TouchPoint.java.

64  {
65  this.tags = tags;
66  }

◆ setTouchDegree()

void org.turro.crm.entity.TouchPoint.setTouchDegree ( int  touchDegree)

Definition at line 72 of file TouchPoint.java.

72  {
73  this.touchDegree = touchDegree;
74  }

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