/** * */ package org.gcube.accounting.datamodel.implementations; import org.gcube.accounting.datamodel.RawUsageRecord; import org.gcube.common.validator.annotations.NotEmpty; /** * @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * */ public class PortletUsageRecord extends RawUsageRecord { /** * Generated Serial Version UID */ private static final long serialVersionUID = 8339324883678974869L; @NotEmpty public static final String USER = "user"; @NotEmpty public static final String OPERATION_ID = "operationId"; public PortletUsageRecord(){ super(); } }