Skip to content
This repository has been archived by the owner on Jul 26, 2022. It is now read-only.

Commit

Permalink
uncomment CliRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
vwiencek committed Sep 4, 2014
1 parent 14c6bd4 commit 4285e8d
Showing 1 changed file with 48 additions and 48 deletions.
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
///*
// * Syncany, www.syncany.org
// * Copyright (C) 2011-2014 Philipp C. Heckel <philipp.heckel@gmail.com>
// *
// * This program is free software: you can redistribute it and/or modify
// * it under the terms of the GNU General Public License as published by
// * the Free Software Foundation, either version 3 of the License, or
// * (at your option) any later version.
// *
// * This program is distributed in the hope that it will be useful,
// * but WITHOUT ANY WARRANTY; without even the implied warranty of
// * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// * GNU General Public License for more details.
// *
// * You should have received a copy of the GNU General Public License
// * along with this program. If not, see <http://www.gnu.org/licenses/>.
// */
//package org.syncany.operations.daemon.messages;
//
//import java.util.ArrayList;
//import java.util.List;
//
//import org.simpleframework.xml.Element;
//import org.simpleframework.xml.ElementList;
//
//public class CliRequest extends WatchRequest {
// @Element(required = true)
// private String command;
//
// @ElementList(entry = "arg")
// private ArrayList<String> commandArgs;
//
// public void setCommand(String command) {
// this.command = command;
// }
//
// public void setCommandArgs(List<String> commandArgs) {
// this.commandArgs = new ArrayList<>(commandArgs);
// }
//
// public String getCommand() {
// return command;
// }
//
// public ArrayList<String> getCommandArgs() {
// return commandArgs;
// }
//}
/*
* Syncany, www.syncany.org
* Copyright (C) 2011-2014 Philipp C. Heckel <philipp.heckel@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.syncany.operations.daemon.messages;

import java.util.ArrayList;
import java.util.List;

import org.simpleframework.xml.Element;
import org.simpleframework.xml.ElementList;

public class CliRequest extends WatchRequest {
@Element(required = true)
private String command;

@ElementList(entry = "arg")
private ArrayList<String> commandArgs;

public void setCommand(String command) {
this.command = command;
}

public void setCommandArgs(List<String> commandArgs) {
this.commandArgs = new ArrayList<>(commandArgs);
}

public String getCommand() {
return command;
}

public ArrayList<String> getCommandArgs() {
return commandArgs;
}
}

0 comments on commit 4285e8d

Please sign in to comment.