BrightSide Workbench Full Report + Source Code
GlobalIdAttribute.java
Go to the documentation of this file.
1 /*
2  * TurrĂ³ i Cutiller Foundation. License notice.
3  * Copyright (C) 2011 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.contacts.proposal;
19 
20 import java.util.List;
21 import org.turro.contacts.Contact;
22 import org.turro.contacts.db.ContactsPU;
23 import org.turro.elephant.db.WhereClause;
24 import org.turro.i18n.I_;
25 import org.turro.jpa.Dao;
26 
31 public class GlobalIdAttribute extends GenericAttribute<Contact> {
32 
34  super(attribute);
36  }
37 
38  @Override
39  protected List<Contact> generateRelated() {
40  Dao dao = new ContactsPU();
41  WhereClause wc = new WhereClause();
42  wc.addClause("select contact from Contact as contact");
43  wc.addClause("where contact.globalIdentifier = :value");
44  wc.addNamedValue("value", attribute.getGlobalIdentifier());
45  return dao.getResultList(wc);
46  }
47 
48  @Override
49  public void addToContact(Contact contact) {
50  contact.setGlobalIdentifier(attribute.getGlobalIdentifier());
51  }
52 
53  @Override
54  public String getAsString() {
55  return attribute.getGlobalIdentifier();
56  }
57 
58  @Override
59  public Contact getContact() {
60  return attribute;
61  }
62 
63  @Override
64  public String getAttributeName() {
65  return I_.get("Global identifier");
66  }
67 
68  @Override
70  return new IAttribute() {
71 
72  @Override
73  public String getAsString() {
74  return a.getGlobalIdentifier();
75  }
76 
77  @Override
78  public Contact getContact() {
79  return a;
80  }
81 
82  @Override
83  public Object getValue() {
84  return a;
85  }
86  };
87  }
88 
89 }
void setGlobalIdentifier(String globalIdentifier)
Definition: Contact.java:271
IAttribute generateAttributeAdapter(final Contact a)
void addNamedValue(String name, Object value)
static String get(String msg)
Definition: I_.java:41