1 package org.turro.crm.entity;
3 import javax.persistence.*;
4 import org.turro.string.Strings;
11 public class TouchPoint implements java.io.Serializable {
14 @GeneratedValue(strategy=GenerationType.IDENTITY)
15 @Column(name=
"IDENTIFIER")
22 private int touchDegree;
24 private boolean endsSale;
26 private boolean positive;
33 this.endsSale = endsSale;
57 this.positive = positive;
73 this.touchDegree = touchDegree;
79 return !Strings.isBlank(name);
void setTouchDegree(int touchDegree)
void setPositive(boolean positive)
void setEndsSale(boolean endsSale)
void setName(String name)
void setTags(String tags)