All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.foreach.across.modules.user.business.GroupProperties Maven / Gradle / Ivy

The newest version!
package com.foreach.across.modules.user.business;

import com.foreach.across.modules.properties.business.EntityProperties;
import com.foreach.common.spring.properties.PropertiesSource;
import com.foreach.common.spring.properties.PropertyTypeRegistry;

public class GroupProperties extends EntityProperties
{
	private final long groupId;

	public GroupProperties( long groupId,
	                        PropertyTypeRegistry propertyTypeRegistry,
	                        PropertiesSource source ) {
		super( propertyTypeRegistry, source );

		this.groupId = groupId;
	}

	@Override
	public Long getId() {
		return groupId;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy