geoportal-data-entry-app/src/main/java/org/gcube/portlets/user/geoportaldataentry/shared/GNADataEntryExtendedConfigP...

63 lines
1.2 KiB
Java
Raw Normal View History

2021-12-21 16:51:56 +01:00
package org.gcube.portlets.user.geoportaldataentry.shared;
import java.io.Serializable;
import org.gcube.application.geoportalcommon.shared.GNADataEntryConfigProfile;
2021-12-21 16:51:56 +01:00
/**
* The Class GNADataEntryExtendedConfigProfile.
2021-12-21 16:51:56 +01:00
*
* @author Francesco Mangiacrapa at ISTI-CNR francesco.mangiacrapa@isti.cnr.it
*
* Sep 26, 2022
2021-12-21 16:51:56 +01:00
*/
public class GNADataEntryExtendedConfigProfile extends GNADataEntryConfigProfile implements Serializable {
2021-12-21 16:51:56 +01:00
/**
*
*/
private static final long serialVersionUID = -3185317083819447952L;
private UserRights userRights = null;
/**
* Instantiates a new GNA data entry config profile.
*/
public GNADataEntryExtendedConfigProfile() {
2021-12-21 16:51:56 +01:00
}
/**
* Gets the user rights.
*
* @return the user rights
*/
2021-12-21 16:51:56 +01:00
public UserRights getUserRights() {
return userRights;
}
/**
* Sets the user rights.
*
* @param userRights the new user rights
*/
2021-12-21 16:51:56 +01:00
public void setUserRights(UserRights userRights) {
this.userRights = userRights;
}
/**
* To string.
*
* @return the string
*/
2021-12-21 16:51:56 +01:00
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append("GNADataEntryExtendedConfigProfile [userRights=");
2021-12-21 16:51:56 +01:00
builder.append(userRights);
builder.append("]");
return builder.toString();
}
}