BrightSide Workbench Full Report + Source Code
IProfile.java
Go to the documentation of this file.
1 /*
2  * TurrĂ³ i Cutiller Foundation. License notice.
3  * Copyright (C) 2021 Lluis TurrĂ³ Cutiller <http://www.turro.org/>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  */
18 package org.turro.plugin.contacts;
19 
24 public interface IProfile {
25 
26  public IContact getContact();
27  public boolean getHasImage();
28  public String getImage();
29  public String getImageOrDefault();
30  public String getEntityPath();
31  public boolean getHasName();
32  public String getName();
33  public String getTradeName();
34  public String getFinalName();
35  public boolean getHasEmail();
36  public String getEmail();
37  public boolean getHasWeb();
38  public String getWeb();
39  public boolean getHasPhone();
40  public String getPhone();
41  public boolean getHasNetwork();
42  public String getNetwork();
43  public boolean getHasAbout();
44  public String getAbout();
45 
46  public boolean isEdit();
47 
48  public boolean canBeProfessional();
49  public boolean canBeStudent();
50  public boolean canFollow();
51 
52  public boolean isCompany();
53  public boolean isCenter();
54 
55  public boolean isResponsible();
56  public boolean isCenterHHRR();
57  public boolean isCompanyHHRR();
58  public boolean isHHRR();
59  public boolean isStudent();
60  public boolean isWorker();
61  public boolean isSingleton();
62 
63  public boolean isInNetworking();
64  public boolean isInPremiumNetworking();
65 
66  public boolean isTranslator();
67 
68  public boolean isShowCompletion();
69 
71 
72 }
IContactRelation getCompanyRelation()