Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2018-03-07 22:20:45 +0000
committerslewis2018-03-07 22:20:45 +0000
commit90bc2eae138f1766d8200a2dcef2ac1c1493b4d2 (patch)
treeed04b516b80f82805377494d3749349767aae15b
parentfd322e918d6ffe7c9d3680057165595338f0cd66 (diff)
downloadorg.eclipse.ecf-90bc2eae138f1766d8200a2dcef2ac1c1493b4d2.tar.gz
org.eclipse.ecf-90bc2eae138f1766d8200a2dcef2ac1c1493b4d2.tar.xz
org.eclipse.ecf-90bc2eae138f1766d8200a2dcef2ac1c1493b4d2.zip
Fix for bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=532078
-rw-r--r--framework/bundles/org.eclipse.ecf.console/src/org/eclipse/ecf/internal/console/ContainerCommand.java7
-rw-r--r--osgi/bundles/org.eclipse.ecf.osgi.services.remoteserviceadmin.console/src/org/eclipse/ecf/osgi/services/remoteserviceadmin/console/RSACommand.java40
2 files changed, 25 insertions, 22 deletions
diff --git a/framework/bundles/org.eclipse.ecf.console/src/org/eclipse/ecf/internal/console/ContainerCommand.java b/framework/bundles/org.eclipse.ecf.console/src/org/eclipse/ecf/internal/console/ContainerCommand.java
index fd699ecca..0b8e466bc 100644
--- a/framework/bundles/org.eclipse.ecf.console/src/org/eclipse/ecf/internal/console/ContainerCommand.java
+++ b/framework/bundles/org.eclipse.ecf.console/src/org/eclipse/ecf/internal/console/ContainerCommand.java
@@ -60,7 +60,7 @@ public class ContainerCommand extends AbstractCommand implements Converter {
@Descriptor("List ECF container instances")
public List<IContainer> listcontainers(CommandSession cs) {
- consoleLine(cs,CONTAINER_LINE_FORMAT, "ID", "ImplClass", "Connected\n");
+ consoleLine(cs, CONTAINER_LINE_FORMAT, "ID", "ImplClass", "Connected\n");
return getContainers();
}
@@ -118,11 +118,12 @@ public class ContainerCommand extends AbstractCommand implements Converter {
}
public ContainerTypeDescription listtypedescriptions(
- @Descriptor("Config name to list (String)") ContainerTypeDescription ctd) {
+ @Descriptor("Container type description name to list (String)") ContainerTypeDescription ctd) {
return ctd;
}
- public ContainerTypeDescription lctds(@Descriptor("Config name to list (String)") ContainerTypeDescription ctd) {
+ public ContainerTypeDescription lctds(
+ @Descriptor("Container type description name to list (String)") ContainerTypeDescription ctd) {
return ctd;
}
diff --git a/osgi/bundles/org.eclipse.ecf.osgi.services.remoteserviceadmin.console/src/org/eclipse/ecf/osgi/services/remoteserviceadmin/console/RSACommand.java b/osgi/bundles/org.eclipse.ecf.osgi.services.remoteserviceadmin.console/src/org/eclipse/ecf/osgi/services/remoteserviceadmin/console/RSACommand.java
index a613efa67..08ab5bbd9 100644
--- a/osgi/bundles/org.eclipse.ecf.osgi.services.remoteserviceadmin.console/src/org/eclipse/ecf/osgi/services/remoteserviceadmin/console/RSACommand.java
+++ b/osgi/bundles/org.eclipse.ecf.osgi.services.remoteserviceadmin.console/src/org/eclipse/ecf/osgi/services/remoteserviceadmin/console/RSACommand.java
@@ -283,7 +283,7 @@ public class RSACommand extends AbstractCommand implements Converter {
@Descriptor("List RSA exported services")
public List<RemoteServiceAdmin.ExportReference> listexports(CommandSession cs) {
- consoleLine(cs, EXPORT_LINE_FORMAT, "Endpoint Id", "Exporting Container ID", "Exported Service Id\n");
+ consoleLine(cs, EXPORT_LINE_FORMAT, "endpoint.id", "Exporting Container ID", "Exported Service Id\n");
return getExports();
}
@@ -294,19 +294,19 @@ public class RSACommand extends AbstractCommand implements Converter {
@Descriptor("Details about a single RSA exported service")
public RemoteServiceAdmin.ExportReference listexports(
- @Descriptor("The Endpoint Id of the exported service") RemoteServiceAdmin.ExportReference r) {
+ @Descriptor("The endpoint.id of the exported service") RemoteServiceAdmin.ExportReference r) {
return r;
}
@Descriptor("Details about a single RSA exported service")
public RemoteServiceAdmin.ExportReference lexps(
- @Descriptor("The Endpoint Id of the exported service") RemoteServiceAdmin.ExportReference r) {
+ @Descriptor("The endpoint.id of the exported service") RemoteServiceAdmin.ExportReference r) {
return r;
}
@Descriptor("List RSA imported services")
public List<RemoteServiceAdmin.ImportReference> listimports(CommandSession cs) {
- consoleLine(cs, IMPORT_LINE_FORMAT, "Endpoint Id", "Importing Container ID", "Imported Service Id\n");
+ consoleLine(cs, IMPORT_LINE_FORMAT, "endpoint.id", "Importing Container ID", "Imported Service Id\n");
return getImports();
}
@@ -317,18 +317,18 @@ public class RSACommand extends AbstractCommand implements Converter {
@Descriptor("Details about a single RSA imported service")
public RemoteServiceAdmin.ImportReference listimports(
- @Descriptor("The Endpoint Id of the exported service") RemoteServiceAdmin.ImportReference r) {
+ @Descriptor("The endpoint.id of the exported service") RemoteServiceAdmin.ImportReference r) {
return r;
}
@Descriptor("Details about a single RSA imported service")
public RemoteServiceAdmin.ImportReference limps(
- @Descriptor("The Endpoint Id of the exported service") RemoteServiceAdmin.ImportReference r) {
+ @Descriptor("The endpoint.id of the exported service") RemoteServiceAdmin.ImportReference r) {
return r;
}
@Descriptor("Unexport an RSA exported service")
- public String unexportservice(@Descriptor("The Endpoint Id of the exported service") String endpointId) {
+ public String unexportservice(@Descriptor("The endpoint.id of the exported service") String endpointId) {
RemoteServiceAdmin.ExportRegistration reg = getExportRegistrationForId(endpointId);
if (reg != null) {
reg.close();
@@ -338,12 +338,12 @@ public class RSACommand extends AbstractCommand implements Converter {
}
@Descriptor("Unexport an RSA exported service")
- public String unexpsvc(@Descriptor("The Endpoint Id of the exported service") String endpointId) {
+ public String unexpsvc(@Descriptor("The endpoint.id of the exported service") String endpointId) {
return unexportservice(endpointId);
}
@Descriptor("Unimport an RSA imported service")
- public String unimportservice(@Descriptor("The Endpoint Id of the imported service") String endpointId) {
+ public String unimportservice(@Descriptor("The endpoint.id of the imported service") String endpointId) {
RemoteServiceAdmin.ImportRegistration reg = getImportRegistrationForId(endpointId);
if (reg != null) {
reg.close();
@@ -353,7 +353,7 @@ public class RSACommand extends AbstractCommand implements Converter {
}
@Descriptor("Unimport an RSA imported service")
- public String unimpsvc(@Descriptor("The Endpoint Id of the imported service") String endpointId) {
+ public String unimpsvc(@Descriptor("The endpoint.id of the imported service") String endpointId) {
return unimportservice(endpointId);
}
@@ -374,9 +374,9 @@ public class RSACommand extends AbstractCommand implements Converter {
} else
return "RSA debugging already off";
} else {
- if (on) {
+ if (on)
return "RSA debugging already on";
- } else {
+ else {
debugOff();
return "RSA debugging OFF";
}
@@ -417,7 +417,7 @@ public class RSACommand extends AbstractCommand implements Converter {
RemoteServiceAdmin.ExportReference er = (RemoteServiceAdmin.ExportReference) reg
.getExportReference();
if (er != null) {
- cs.getConsole().println("Service.id=" + String.valueOf(serviceid)
+ cs.getConsole().println("service.id=" + String.valueOf(serviceid)
+ " successfully exported with endpoint description:");
return er;
}
@@ -448,7 +448,7 @@ public class RSACommand extends AbstractCommand implements Converter {
@Descriptor("Import a remote service via Remote Service Admin. If -e is used, the given endpoint URL is read to read the EndpointDescription. If not used, an EndpointDescription is expected from the console input (e.g. copy and paste)")
public RemoteServiceAdmin.ImportReference importservice(CommandSession cs,
@Descriptor("Optional URL indicating location of an Endpoint Description (EDEF format)") @Parameter(names = {
- "-e", "--endpointdescriptionurl" }, absentValue = "") String endpointurl) {
+ "-e", "--edefurl" }, absentValue = "") String endpointurl) {
InputStream ins = null;
URL url = null;
if ("".equals(endpointurl)) {
@@ -511,7 +511,7 @@ public class RSACommand extends AbstractCommand implements Converter {
cs.getConsole().println("Cannot get endpoint description for imported endpoint");
return null;
}
- cs.getConsole().println("Endpoint id=" + ed.getId() + " with service.id="
+ cs.getConsole().println("endpoint.id=" + ed.getId() + " with service.id="
+ ir.getImportedService().getProperty(Constants.SERVICE_ID) + " successfully imported:");
return ir;
} else
@@ -520,10 +520,10 @@ public class RSACommand extends AbstractCommand implements Converter {
}
}
- @Descriptor("Import a remote service via Remote Service Admin. If -e is used, the given endpoint URL is read to read the EndpointDescription. If not used, an EndpointDescription is expected from the console input (e.g. copy and paste)")
+ @Descriptor("Import a remote service via Remote Service Admin. If -e|-edefurl is used, the given endpoint URL is read to read the EndpointDescription. If not used, an EndpointDescription is expected from the console input (e.g. copy and paste)")
public RemoteServiceAdmin.ImportReference impsvc(CommandSession cs,
@Descriptor("Optional URL indicating location of an Endpoint Description (EDEF format)") @Parameter(names = {
- "-e", "--endpointdescriptionurl" }, absentValue = "") String endpointurl) {
+ "-e", "--edefurl" }, absentValue = "") String endpointurl) {
return importservice(cs, endpointurl);
}
@@ -533,15 +533,17 @@ public class RSACommand extends AbstractCommand implements Converter {
@Descriptor("Map of properties for update") Map<String, ?> map) {
RemoteServiceAdmin.ExportRegistration ereg = getExportRegistrationForId(endpointid);
if (ereg == null) {
- cs.getConsole().println("Cannot find export with endpointid=" + endpointid);
+ cs.getConsole().println("Cannot find export with endpoint.id=" + endpointid);
return null;
}
RemoteServiceAdmin.ExportReference eref = (RemoteServiceAdmin.ExportReference) ereg.getExportReference();
if (eref == null) {
- cs.getConsole().println("The remote service with endpointid=" + endpointid + " has been closed");
+ cs.getConsole().println("The remote service with endpoint.id=" + endpointid + " has been closed");
return null;
}
+ // Do the update
ereg.update(map);
+ cs.getConsole().println("The endpoint.id=" + endpointid + " has been updated");
return eref;
}

Back to the top