mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Removed unnecessary params from paginated queries
This commit is contained in:
parent
13d9bdfb53
commit
a4538a6d6c
@ -48,8 +48,6 @@ public class ActivityList extends BasePaginatedResult {
|
|||||||
sb.append("{\n");
|
sb.append("{\n");
|
||||||
|
|
||||||
sb.append(" count: ").append(getCount()).append(",\n");
|
sb.append(" count: ").append(getCount()).append(",\n");
|
||||||
sb.append(" next: ").append(getNext()).append(",\n");
|
|
||||||
sb.append(" previous: ").append(getPrevious()).append(",\n");
|
|
||||||
sb.append(" devices: [").append(activities).append("\n");
|
sb.append(" devices: [").append(activities).append("\n");
|
||||||
sb.append("]}\n");
|
sb.append("]}\n");
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
|
|||||||
@ -39,34 +39,4 @@ public class BasePaginatedResult {
|
|||||||
public void setCount(int count) {
|
public void setCount(int count) {
|
||||||
this.count = count;
|
this.count = count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Link to the next subset of resources qualified. \nEmpty if no more resources are to be returned.
|
|
||||||
*/
|
|
||||||
@ApiModelProperty(value = "Link to the next subset of resources qualified. \n " +
|
|
||||||
"Empty if no more resources are to be returned.")
|
|
||||||
@JsonProperty("next")
|
|
||||||
public String getNext() {
|
|
||||||
return next;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNext(String next) {
|
|
||||||
this.next = next;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Link to the previous subset of resources qualified. \nEmpty if current subset is the first subset returned.
|
|
||||||
*/
|
|
||||||
@ApiModelProperty(value = "Link to the previous subset of resources qualified. \n" +
|
|
||||||
"Empty if current subset is the first subset returned.")
|
|
||||||
@JsonProperty("previous")
|
|
||||||
public String getPrevious() {
|
|
||||||
return previous;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrevious(String previous) {
|
|
||||||
this.previous = previous;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -24,8 +24,8 @@ import io.swagger.annotations.ApiModelProperty;
|
|||||||
@ApiModel(value = "BasicUserInfo", description = "Basic user information and the roles of the user.")
|
@ApiModel(value = "BasicUserInfo", description = "Basic user information and the roles of the user.")
|
||||||
public class BasicUserInfo {
|
public class BasicUserInfo {
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "username", value = "The login name of the user.", required = true )
|
||||||
private String username;
|
private String username;
|
||||||
|
|
||||||
@ApiModelProperty(name = "firstname", value = "The first name of the user.", required = true )
|
@ApiModelProperty(name = "firstname", value = "The first name of the user.", required = true )
|
||||||
private String firstname;
|
private String firstname;
|
||||||
@ApiModelProperty(name = "lastname", value = "The last name of the user.", required = true )
|
@ApiModelProperty(name = "lastname", value = "The last name of the user.", required = true )
|
||||||
|
|||||||
@ -47,8 +47,6 @@ public class BasicUserInfoList extends BasePaginatedResult {
|
|||||||
sb.append("{\n");
|
sb.append("{\n");
|
||||||
|
|
||||||
sb.append(" count: ").append(getCount()).append(",\n");
|
sb.append(" count: ").append(getCount()).append(",\n");
|
||||||
sb.append(" next: ").append(getNext()).append(",\n");
|
|
||||||
sb.append(" previous: ").append(getPrevious()).append(",\n");
|
|
||||||
sb.append(" users: [").append(users).append("\n");
|
sb.append(" users: [").append(users).append("\n");
|
||||||
sb.append("]}\n");
|
sb.append("]}\n");
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
|
|||||||
@ -45,8 +45,6 @@ public class DeviceList extends BasePaginatedResult {
|
|||||||
sb.append("{\n");
|
sb.append("{\n");
|
||||||
|
|
||||||
sb.append(" count: ").append(getCount()).append(",\n");
|
sb.append(" count: ").append(getCount()).append(",\n");
|
||||||
sb.append(" next: ").append(getNext()).append(",\n");
|
|
||||||
sb.append(" previous: ").append(getPrevious()).append(",\n");
|
|
||||||
sb.append(" devices: [").append(devices).append("\n");
|
sb.append(" devices: [").append(devices).append("\n");
|
||||||
sb.append("]}\n");
|
sb.append("]}\n");
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
|
|||||||
@ -90,8 +90,6 @@ public class DeviceTypeList {
|
|||||||
sb.append("{\n");
|
sb.append("{\n");
|
||||||
|
|
||||||
sb.append(" count: ").append(getCount()).append(",\n");
|
sb.append(" count: ").append(getCount()).append(",\n");
|
||||||
sb.append(" next: ").append(getNext()).append(",\n");
|
|
||||||
sb.append(" previous: ").append(getPrevious()).append(",\n");
|
|
||||||
sb.append(" deviceTypes: [").append(deviceTypes).append("\n");
|
sb.append(" deviceTypes: [").append(deviceTypes).append("\n");
|
||||||
sb.append("]}\n");
|
sb.append("]}\n");
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
|
|||||||
@ -46,8 +46,6 @@ public class NotificationList extends BasePaginatedResult {
|
|||||||
sb.append("{");
|
sb.append("{");
|
||||||
|
|
||||||
sb.append(" count: ").append(getCount()).append(",");
|
sb.append(" count: ").append(getCount()).append(",");
|
||||||
sb.append(" next: ").append(getNext()).append(",");
|
|
||||||
sb.append(" previous: ").append(getPrevious()).append(",");
|
|
||||||
sb.append(" notifications: [").append(notifications).append("");
|
sb.append(" notifications: [").append(notifications).append("");
|
||||||
sb.append("]}");
|
sb.append("]}");
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
|
|||||||
@ -42,8 +42,6 @@ public class OperationList extends BasePaginatedResult {
|
|||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
sb.append("{\n");
|
sb.append("{\n");
|
||||||
sb.append(" count: ").append(getCount()).append(",\n");
|
sb.append(" count: ").append(getCount()).append(",\n");
|
||||||
sb.append(" next: ").append(getNext()).append(",\n");
|
|
||||||
sb.append(" previous: ").append(getPrevious()).append(",\n");
|
|
||||||
sb.append(" operations: [").append(operations).append("\n");
|
sb.append(" operations: [").append(operations).append("\n");
|
||||||
sb.append("]}\n");
|
sb.append("]}\n");
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
|
|||||||
@ -45,8 +45,6 @@ public class PolicyList extends BasePaginatedResult {
|
|||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
sb.append("{\n");
|
sb.append("{\n");
|
||||||
sb.append(" count: ").append(getCount()).append(",\n");
|
sb.append(" count: ").append(getCount()).append(",\n");
|
||||||
sb.append(" next: ").append(getNext()).append(",\n");
|
|
||||||
sb.append(" previous: ").append(getPrevious()).append(",\n");
|
|
||||||
sb.append(" policies: [").append(policies).append("\n");
|
sb.append(" policies: [").append(policies).append("\n");
|
||||||
sb.append("]}\n");
|
sb.append("]}\n");
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
|
|||||||
@ -44,8 +44,6 @@ public class RoleList extends BasePaginatedResult {
|
|||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
sb.append("{\n");
|
sb.append("{\n");
|
||||||
sb.append(" count: ").append(getCount()).append(",\n");
|
sb.append(" count: ").append(getCount()).append(",\n");
|
||||||
sb.append(" next: ").append(getNext()).append(",\n");
|
|
||||||
sb.append(" previous: ").append(getPrevious()).append(",\n");
|
|
||||||
sb.append(" roles: [").append(roles).append("\n");
|
sb.append(" roles: [").append(roles).append("\n");
|
||||||
sb.append("]}\n");
|
sb.append("]}\n");
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
|
|||||||
@ -46,8 +46,6 @@ public class UserInfoList extends BasePaginatedResult {
|
|||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
sb.append("{\n");
|
sb.append("{\n");
|
||||||
sb.append(" count: ").append(getCount()).append(",\n");
|
sb.append(" count: ").append(getCount()).append(",\n");
|
||||||
sb.append(" next: ").append(getNext()).append(",\n");
|
|
||||||
sb.append(" previous: ").append(getPrevious()).append(",\n");
|
|
||||||
sb.append(" users: [").append(users).append("\n");
|
sb.append(" users: [").append(users).append("\n");
|
||||||
sb.append("]}\n");
|
sb.append("]}\n");
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
|
|||||||
@ -440,7 +440,7 @@ public interface UserManagementService {
|
|||||||
@QueryParam("limit") int limit);
|
@QueryParam("limit") int limit);
|
||||||
|
|
||||||
@PUT
|
@PUT
|
||||||
@Path("/{username}/credentials")
|
@Path("/credentials")
|
||||||
@ApiOperation(
|
@ApiOperation(
|
||||||
consumes = MediaType.APPLICATION_JSON,
|
consumes = MediaType.APPLICATION_JSON,
|
||||||
produces = MediaType.APPLICATION_JSON,
|
produces = MediaType.APPLICATION_JSON,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user