BrightSide Workbench Full Report + Source Code
CompaniesComposer.java
Go to the documentation of this file.
1
/*
2
* TurrĂ³ i Cutiller Foundation. License notice.
3
* Copyright (C) 2015 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
19
package
org.turro.financials.business;
20
21
import
org.turro.elephant.context.Application;
22
import
org.turro.financials.db.FinancialsPU;
23
import
org.turro.financials.entity.Company;
24
import
org.turro.jpa.composer.EntityComposer;
25
import
org.turro.jpa.entity.DaoEntity;
26
import
org.turro.zul.frame.Framework;
27
import
org.zkoss.zk.ui.Component;
28
33
public
class
CompaniesComposer
extends
EntityComposer
<Company, Long> {
34
35
@Override
36
protected
String
getAttributeName
() {
37
return
"company"
;
38
}
39
40
@Override
41
protected
Company
getEntityInstance
(Long
id
) {
42
return
new
FinancialsPU
().find(
Company
.class, 1L);
43
}
44
45
@Override
46
protected
DaoEntity
getWrapperInstance
(Component comp) {
47
CompanyWrapper
w =
new
CompanyWrapper
();
48
w.setEntity(
entity
);
49
Framework
.
getCurrent
().
setSelectedLabel
(w.getTabLabel());
50
Framework
.
getCurrent
().
setSelectedTooltiptext
(w.getTooltiptext());
51
return
w;
52
}
53
54
@Override
55
protected
boolean
beforeDelete
() {
56
return
false
;
57
}
58
59
@Override
60
protected
boolean
shouldBeSaved
() {
61
return
true
|| super.shouldBeSaved();
62
}
63
64
@Override
65
protected
boolean
inSaveRole
() {
66
return
Application
.
getApplication
().
isInRole
(
"finan-company:edit"
);
67
}
68
69
@Override
70
protected
boolean
inDeleteRole
() {
71
return
false
;
72
}
73
74
@Override
75
protected
boolean
hasChanged
() {
76
// avoid xmlseralizer
77
return
true
;
78
}
79
80
@Override
81
protected
void
retrieveEntity
() {
82
// avoid xmlseralizer and attribute
83
entity
=
CompanyWrapper
.
getDefaultCompany
(
true
);
84
}
85
86
}
org.turro.elephant.context.Application
Definition:
Application.java:49
org.turro.elephant.context.Application.isInRole
boolean isInRole(String role)
Definition:
Application.java:139
org.turro.elephant.context.Application.getApplication
static Application getApplication()
Definition:
Application.java:71
org.turro.financials.business.CompaniesComposer
Definition:
CompaniesComposer.java:33
org.turro.financials.business.CompaniesComposer.getEntityInstance
Company getEntityInstance(Long id)
Definition:
CompaniesComposer.java:41
org.turro.financials.business.CompaniesComposer.getWrapperInstance
DaoEntity getWrapperInstance(Component comp)
Definition:
CompaniesComposer.java:46
org.turro.financials.business.CompaniesComposer.inDeleteRole
boolean inDeleteRole()
Definition:
CompaniesComposer.java:70
org.turro.financials.business.CompaniesComposer.beforeDelete
boolean beforeDelete()
Definition:
CompaniesComposer.java:55
org.turro.financials.business.CompaniesComposer.inSaveRole
boolean inSaveRole()
Definition:
CompaniesComposer.java:65
org.turro.financials.business.CompaniesComposer.hasChanged
boolean hasChanged()
Definition:
CompaniesComposer.java:75
org.turro.financials.business.CompaniesComposer.retrieveEntity
void retrieveEntity()
Definition:
CompaniesComposer.java:81
org.turro.financials.business.CompaniesComposer.getAttributeName
String getAttributeName()
Definition:
CompaniesComposer.java:36
org.turro.financials.business.CompaniesComposer.shouldBeSaved
boolean shouldBeSaved()
Definition:
CompaniesComposer.java:60
org.turro.financials.db.FinancialsPU
Definition:
FinancialsPU.java:32
org.turro.financials.entity.Company
Definition:
Company.java:36
org.turro.financials.model.business.CompanyWrapper
Definition:
bsfinancials-core/src/main/java/org/turro/financials/model/business/CompanyWrapper.java:51
org.turro.financials.model.business.CompanyWrapper.getDefaultCompany
static Company getDefaultCompany()
Definition:
bsfinancials-core/src/main/java/org/turro/financials/model/business/CompanyWrapper.java:242
org.turro.jpa.composer.EntityComposer
Definition:
EntityComposer.java:49
org.turro.jpa.composer.EntityComposer.entity
E entity
Definition:
EntityComposer.java:52
org.turro.jpa.entity.DaoEntity
Definition:
DaoEntity.java:41
org.turro.zul.frame.Framework
Definition:
Framework.java:45
org.turro.zul.frame.Framework.getCurrent
static Framework getCurrent()
Definition:
Framework.java:203
org.turro.zul.frame.Framework.setSelectedLabel
void setSelectedLabel(String text)
Definition:
Framework.java:103
org.turro.zul.frame.Framework.setSelectedTooltiptext
void setSelectedTooltiptext(String text)
Definition:
Framework.java:107
TurroProjects
Public
BrightSide
bsfinancials-www
src
main
java
org
turro
financials
business
CompaniesComposer.java
Generated on Tue Mar 12 2024 07:01:18 for BrightSide by
1.9.1