Class UserLimits
- java.lang.Object
-
- net.webpdf.wsclient.schema.beans.limits.UserLimits
-
- All Implemented Interfaces:
Serializable,Limits
public class UserLimits extends Object implements Limits
An instance ofUserLimitslists the upload limits for registered webPDF server users.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UserLimits()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetDiskSpaceLimit()Returns the disk space limit of the affected user type.intgetMaxFiles()Returns the maximum number of files for the affected user type.intgetUploadLimit()Returns the upload limit of the affected user type.booleanhasLimits()Returnstrue, if usage limits exist for the user type.voidsetDiskSpaceLimit(int diskSpaceLimit)Sets the disk space limit of the affected user type.voidsetMaxFiles(int maxFiles)Sets the maximum number of files for the affected user type.voidsetUploadLimit(int uploadLimit)Sets the upload limit of the affected user type.
-
-
-
Method Detail
-
getDiskSpaceLimit
public int getDiskSpaceLimit()
Returns the disk space limit of the affected user type.- Specified by:
getDiskSpaceLimitin interfaceLimits- Returns:
- The disk space limit of the affected user type.
-
setDiskSpaceLimit
public void setDiskSpaceLimit(int diskSpaceLimit)
Sets the disk space limit of the affected user type.- Specified by:
setDiskSpaceLimitin interfaceLimits- Parameters:
diskSpaceLimit- The disk space limit of the affected user type.
-
getMaxFiles
public int getMaxFiles()
Returns the maximum number of files for the affected user type.- Specified by:
getMaxFilesin interfaceLimits- Returns:
- The maximum number of files for the affected user type.
-
setMaxFiles
public void setMaxFiles(int maxFiles)
Sets the maximum number of files for the affected user type.- Specified by:
setMaxFilesin interfaceLimits- Parameters:
maxFiles- The maximum number of files for the affected user type.
-
getUploadLimit
public int getUploadLimit()
Returns the upload limit of the affected user type.- Specified by:
getUploadLimitin interfaceLimits- Returns:
- The upload limit of the affected user type.
-
setUploadLimit
public void setUploadLimit(int uploadLimit)
Sets the upload limit of the affected user type.- Specified by:
setUploadLimitin interfaceLimits- Parameters:
uploadLimit- The upload limit of the affected user type.
-
-