CS-9919: Support for Nexus Swiches (Cisco Vswitches)

Description:

	Removing unused classes and references to them.
This commit is contained in:
Devdeep Singh 2012-05-06 13:33:07 +05:30 committed by Vijayendra Bhamidipati
parent f94a5710a9
commit 12a85ea0c5
3 changed files with 0 additions and 73 deletions

View File

@ -12,9 +12,6 @@
package com.cloud.utils.cisco.n1kv.vsm;
import com.cloud.utils.cisco.n1kv.vsm.VSMCommand;
import com.cloud.utils.cisco.n1kv.vsm.VSMResponse;
import org.apache.log4j.Logger;
// import all the packages we need here.
@ -39,14 +36,6 @@ public class CiscoNexusVSMService extends Object {
// any state info regarding this session.
}
public static VSMResponse executeVSMCommand(VSMCommand cmd) {
VSMResponse resp = new VSMResponse();
return resp; // for now we just return a dummy response. We define these new
// VSMCommand and VSMResponse classes in this same package. The
// input params to this function may change as we put in more
// concrete functionality.
}
}

View File

@ -1,31 +0,0 @@
// Copyright 2012 Citrix Systems, Inc. Licensed under the
// Apache License, Version 2.0 (the "License"); you may not use this
// file except in compliance with the License. Citrix Systems, Inc.
// reserves all rights not expressly granted by 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.
//
package com.cloud.utils.cisco.n1kv.vsm;
public class VSMCommand {
String XML_command;
public void setXMLCommand(String xmlCmd) {
this.XML_command = xmlCmd;
return;
}
public String getXMLCommand() {
return this.XML_command;
}
// we probably should put in other functions here
// that help construct the XML command. Or probably
// we're better off putting them in the layers that
// create an object of this class.
}

View File

@ -1,31 +0,0 @@
// Copyright 2012 Citrix Systems, Inc. Licensed under the
// Apache License, Version 2.0 (the "License"); you may not use this
// file except in compliance with the License. Citrix Systems, Inc.
// reserves all rights not expressly granted by 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.
//
package com.cloud.utils.cisco.n1kv.vsm;
public class VSMResponse {
String XML_response;
public void setXMLresponse(String xmlResp) {
this.XML_response = xmlResp;
return;
}
public String getXMLResponse() {
return this.XML_response;
}
// we probably should put in other functions here
// that help parse the XML command. Or probably
// we're better off putting them in the layers that
// create an object of this class.
}