package com.devicehive.model.rpc; /* * #%L * DeviceHive Common Module * %% * Copyright (C) 2016 DataArt * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * #L% */ import com.devicehive.auth.HivePrincipal; import com.devicehive.shim.api.Body; public class ListDeviceRequest extends Body { private String name; private String namePattern; private Long networkId; private String networkName; private Long deviceClassId; private String deviceClassName; private String sortField; private Boolean sortOrderAsc; private Integer take; private Integer skip; private HivePrincipal principal; public ListDeviceRequest() { super(Action.LIST_DEVICE_REQUEST.name()); } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getNamePattern() { return namePattern; } public void setNamePattern(String namePattern) { this.namePattern = namePattern; } public Long getNetworkId() { return networkId; } public void setNetworkId(Long networkId) { this.networkId = networkId; } public String getNetworkName() { return networkName; } public void setNetworkName(String networkName) { this.networkName = networkName; } public Long getDeviceClassId() { return deviceClassId; } public void setDeviceClassId(Long deviceClassId) { this.deviceClassId = deviceClassId; } public String getDeviceClassName() { return deviceClassName; } public void setDeviceClassName(String deviceClassName) { this.deviceClassName = deviceClassName; } public String getSortField() { return sortField; } public void setSortField(String sortField) { this.sortField = sortField; } public Boolean getSortOrderAsc() { return sortOrderAsc; } public void setSortOrderAsc(Boolean sortOrderAsc) { this.sortOrderAsc = sortOrderAsc; } public Integer getTake() { return take; } public void setTake(Integer take) { this.take = take; } public Integer getSkip() { return skip; } public void setSkip(Integer skip) { this.skip = skip; } public HivePrincipal getPrincipal() { return principal; } public void setPrincipal(HivePrincipal principal) { this.principal = principal; } }