mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
code formatting
This commit is contained in:
parent
4234bcf482
commit
8ce3b6a8c3
@ -25,12 +25,11 @@ import java.io.Serializable;
|
||||
|
||||
|
||||
@ApiModel(value = "FileTransfer",
|
||||
//todo
|
||||
description = "This class carries all information related to file transfer operation.")
|
||||
public class FileTransfer extends AndroidOperation implements Serializable {
|
||||
//todo
|
||||
@ApiModelProperty(name = "fileLocation", value = "FTP URL of file", required = true)
|
||||
private String fileLocation;
|
||||
|
||||
@ApiModelProperty(name = "ftpServerAddress", value = "FTP Server Address", required = true)
|
||||
private String ftpServerAddress;
|
||||
|
||||
@ApiModelProperty(name = "ftpUserName", value = "FTP User name", required = true)
|
||||
private String ftpUserName;
|
||||
@ -41,21 +40,20 @@ public class FileTransfer extends AndroidOperation implements Serializable {
|
||||
@ApiModelProperty(name = "fileName", value = "File name", required = true)
|
||||
private String fileName;
|
||||
|
||||
public String getFileName(){
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName){
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
|
||||
public String getFileLocation() {
|
||||
return fileLocation;
|
||||
public String getFtpServerAddress() {
|
||||
return ftpServerAddress;
|
||||
}
|
||||
|
||||
public void setFileLocation(String fileLocation) {
|
||||
this.fileLocation = fileLocation;
|
||||
public void setFtpServerAddress(String ftpServerAddress) {
|
||||
this.ftpServerAddress = ftpServerAddress;
|
||||
}
|
||||
|
||||
public String getFtpUserName() {
|
||||
@ -73,6 +71,5 @@ public class FileTransfer extends AndroidOperation implements Serializable {
|
||||
public void setFtpPassword(String ftpPassword) {
|
||||
this.ftpPassword = ftpPassword;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -19,12 +19,9 @@ package org.wso2.carbon.mdm.services.android.bean.wrapper;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import org.wso2.carbon.mdm.services.android.bean.DeviceLock;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* This class is used to wrap the Notification bean with devices.
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user