Implement toString for the API domain implementation classes
[smart-dao.git] / smart-exim / smart-exim-api / src / main / java / com / smartitengineering / exim / impl / AssociationConfigImpl.java
blobb1490d97e58affff839587c31a206a12ca80725f
1 /*
2 * This is a common dao with basic CRUD operations and is not limited to any
3 * persistent layer implementation
4 *
5 * Copyright (C) 2008 Imran M Yousuf (imyousuf@smartitengineering.com)
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 3 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 package com.smartitengineering.exim.impl;
21 import com.smartitengineering.exim.AssociationConfig;
23 /**
24 * Default implementation of {@link AssociationConfig} for representing an
25 * association's configuraiton
26 * @author imyousuf
27 * @since 0.4
29 public class AssociationConfigImpl implements AssociationConfig{
30 private AssociationType associationType;
31 private boolean itToBeExportedAsUri;
32 private boolean transientAssociation;
33 private boolean eagerSet;
34 private boolean stringProviderImplemented;
35 private String name;
37 public void setAssociationType(AssociationType associationType) {
38 this.associationType = associationType;
41 public void setEagerSet(boolean eagerSet) {
42 this.eagerSet = eagerSet;
45 public void setItToBeExportedAsUri(boolean itToBeExportedAsUri) {
46 this.itToBeExportedAsUri = itToBeExportedAsUri;
49 public void setName(String name) {
50 this.name = name;
53 public void setStringProviderImplemented(boolean stringProviderImplemented) {
54 this.stringProviderImplemented = stringProviderImplemented;
57 public void setTransient(boolean transientAssociation) {
58 this.transientAssociation = transientAssociation;
61 public boolean isItToBeExportedAsUri() {
62 return itToBeExportedAsUri;
65 public boolean isTransient() {
66 return transientAssociation;
69 public AssociationType getAssociationType() {
70 return associationType;
73 public String getName() {
74 return name;
77 public boolean isEagerSet() {
78 return eagerSet;
81 public boolean isStringProviderImplemented() {
82 return stringProviderImplemented;
85 @Override
86 public String toString() {
87 StringBuilder toStringBuilder = new StringBuilder();
88 toStringBuilder.append(super.toString());
89 toStringBuilder.append("\n");
90 toStringBuilder.append("\nassociationType: ");
91 toStringBuilder.append(associationType);
92 toStringBuilder.append("\nitToBeExportedAsUri: ");
93 toStringBuilder.append(itToBeExportedAsUri);
94 toStringBuilder.append("\ntransientAssociation: ");
95 toStringBuilder.append(transientAssociation);
96 toStringBuilder.append("\neagerSet: ");
97 toStringBuilder.append(eagerSet);
98 toStringBuilder.append("\nstringProviderImplemented: ");
99 toStringBuilder.append(stringProviderImplemented);
100 toStringBuilder.append("\nname: ");
101 toStringBuilder.append(name);
102 return toStringBuilder.toString();