
com.belladati.sdk.user.UserGroupCreateBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-api Show documentation
Show all versions of sdk-api Show documentation
The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the SDK's interface definitions.
package com.belladati.sdk.user;
import com.belladati.sdk.util.PostBuilder;
/**
* Builder used to initiate user group object that should be created.
*
* @author Lubomir Elko
*/
public interface UserGroupCreateBuilder extends PostBuilder {
/**
* Sets the user group's display name.
*
* @param name the user group's display name
*/
void setName(String name);
/**
* Sets the user group's description.
*
* @param description the user group's description
*/
void setDescription(String description);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy