/** SpagoBI, the Open Source Business Intelligence suite Copyright (C) 2012 Engineering Ingegneria Informatica S.p.A. - SpagoBI Competency Center This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. **/ package it.eng.spagobi.studio.utils.bo; import it.eng.spagobi.sdk.behavioural.bo.SDKAttribute; public class ProfileAttribute { private Integer id; private String name; private String description; public ProfileAttribute(SDKAttribute sdk) { id = sdk.getId(); name = sdk.getName(); description = sdk.getDescription(); } public ProfileAttribute(ProfileAttribute profileAttribute) { super(); } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } }