This commit is contained in:
Pearl Dsilva 2023-10-26 09:31:33 -04:00
parent b47b99b142
commit 4530869964
1 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
package org.apache.cloudstack.service;
public enum NsxServiceList {
AD_Server(1024, "/infra/services/AD_Server", "TCP"),
Active_Directory_Server(464, "/infra/services/Active_Directory_Server", "TCP"),
SSH(22, "/infra/services/SSH", "TCP");
int port;
String service;
String path;
String protocol;
NsxServiceList(int port, String path, String protocol) {
this.port = port;
this.path = path;
this.protocol = protocol;
}
}