org.apache.karaf.shell.api.action.Completion类的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(11.9k)|赞(0)|评价(0)|浏览(179)

本文整理了Java中org.apache.karaf.shell.api.action.Completion类的一些代码示例,展示了Completion类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Completion类的具体详情如下:
包路径:org.apache.karaf.shell.api.action.Completion
类名称:Completion

Completion介绍

暂无

代码示例

代码示例来源:origin: org.apache.camel.karaf/camel-karaf-commands

  1. public abstract class AbstractRouteCommand extends CamelControllerImpl implements Action {
  2. @Argument(index = 0, name = "context", description = "The Camel context name.", required = true, multiValued = false)
  3. @Completion(CamelContextCompleter.class)
  4. String context;
  5. @Argument(index = 1, name = "route", description = "The Camel route ID or a wildcard expression", required = true, multiValued = false)
  6. @Completion(RouteCompleter.class)
  7. String route;
  8. }

代码示例来源:origin: apache/karaf

  1. @Command(scope = "jdbc", name = "execute", description = "Execute a SQL command on a given JDBC datasource")
  2. @Parsing(JdbcParser.class)
  3. @Service
  4. public class ExecuteCommand extends JdbcCommandSupport {
  5. @Argument(index = 0, name = "datasource", description = "The JDBC datasource name, its JNDI name or service.id", required = true, multiValued = false)
  6. @Completion(DataSourcesNameCompleter.class)
  7. String datasource;
  8. @Argument(index = 1, name = "command", description = "The SQL command to execute", required = true, multiValued = false)
  9. @Completion(SqlCompleter.class)
  10. String command;
  11. @Override
  12. public Object execute() throws Exception {
  13. this.getJdbcService().execute(datasource, command);
  14. return null;
  15. }
  16. }

代码示例来源:origin: apache/karaf

  1. @Command(scope = "instance", name = "status", description = "Check the current status of an instance.")
  2. @Service
  3. public class StatusCommand extends InstanceCommandSupport {
  4. @Argument(index = 0, name = "name", description = "The name of the instance", required = true, multiValued = false)
  5. @Completion(InstanceCompleter.class)
  6. private String name;
  7. protected Object doExecute() throws Exception {
  8. Instance instance = getExistingInstance(name);
  9. System.out.println(instance.getState());
  10. return null;
  11. }
  12. }

代码示例来源:origin: apache/karaf

  1. /**
  2. * For commands that need a connection factory and authentication information
  3. */
  4. public abstract class JmsConnectionCommandSupport extends JmsCommandSupport {
  5. @Argument(index = 0, name = "connectionFactory", description = "The JMS connection factory name", required = true, multiValued = false)
  6. @Completion(ConnectionFactoriesNameCompleter.class)
  7. String connectionFactory;
  8. @Option(name = "-u", aliases = { "--username" }, description = "Username to connect to the JMS broker", required = false, multiValued = false)
  9. String username = "karaf";
  10. @Option(name = "-p", aliases = { "--password" }, description = "Password to connect to the JMS broker", required = false, multiValued = false)
  11. String password = "karaf";
  12. }

代码示例来源:origin: org.apache.camel.karaf/camel-karaf-commands

  1. @Command(scope = "camel", name = "context-stop", description = "Stop a Camel context. It becomes unavailable and can not be started again.")
  2. @Service
  3. public class ContextStop extends CamelControllerImpl implements Action {
  4. @Argument(index = 0, name = "context", description = "The name of the Camel context.", required = true, multiValued = false)
  5. @Completion(CamelContextCompleter.class)
  6. String context;
  7. @Override
  8. public Object execute() throws Exception {
  9. ContextStopCommand command = new ContextStopCommand(context);
  10. return command.execute(this, System.out, System.err);
  11. }
  12. }

代码示例来源:origin: org.apache.camel.karaf/camel-karaf-commands

  1. @Command(scope = "camel", name = "route-list", description = "List Camel routes.")
  2. @Service
  3. public class RouteList extends CamelControllerImpl implements Action {
  4. @Argument(index = 0, name = "name", description = "The Camel context name where to look for the route", required = false, multiValued = false)
  5. @Completion(CamelContextCompleter.class)
  6. String name;
  7. public Object execute() throws Exception {
  8. RouteListCommand command = new RouteListCommand(name);
  9. return command.execute(this, System.out, System.err);
  10. }
  11. }

代码示例来源:origin: org.apache.camel.karaf/camel-karaf-commands

  1. @Command(scope = "camel", name = "context-resume", description = "Resumes a Camel context.")
  2. @Service
  3. public class ContextResume extends CamelControllerImpl implements Action {
  4. @Argument(index = 0, name = "context", description = "The name of the Camel context.", required = true, multiValued = false)
  5. @Completion(CamelContextCompleter.class)
  6. String context;
  7. @Override
  8. public Object execute() throws Exception {
  9. ContextResumeCommand command = new ContextResumeCommand(context);
  10. return command.execute(this, System.out, System.err);
  11. }
  12. }

代码示例来源:origin: apache/karaf

  1. @Command(scope = "jms", name = "delete", description = "Delete a JMS connection factory")
  2. @Service
  3. public class DeleteCommand extends JmsCommandSupport {
  4. @Argument(index = 0, name = "name", description = "The JMS connection factory name", required = true, multiValued = false)
  5. @Completion(ConnectionFactoriesFileNameCompleter.class)
  6. String name;
  7. @Override
  8. public Object execute() throws Exception {
  9. getJmsService().delete(name);
  10. return null;
  11. }
  12. }

代码示例来源:origin: apache/karaf

  1. @Command(scope = "jdbc", name = "ds-delete", description = "Delete a JDBC datasource")
  2. @Service
  3. public class DeleteCommand extends JdbcCommandSupport {
  4. @Argument(index = 0, name = "name", description = "The JDBC datasource name (the one used at creation time)", required = true, multiValued = false)
  5. @Completion(DataSourcesNameCompleter.class)
  6. String name;
  7. @Override
  8. public Object execute() throws Exception {
  9. this.getJdbcService().delete(name);
  10. return null;
  11. }
  12. }

代码示例来源:origin: apache/karaf

  1. @Command(scope = "jndi", name = "bind", description = "Bind an OSGi service in the JNDI context")
  2. @Service
  3. public class BindCommand implements Action {
  4. @Argument(index = 0, name = "service", description = "The ID of the OSGi service to bind", required = true, multiValued = false)
  5. @Completion(ServicesIdCompleter.class)
  6. Long serviceId;
  7. @Argument(index = 1, name = "name", description = "The JNDI name to bind the OSGi service", required = true, multiValued = false)
  8. @Completion(ContextsCompleter.class)
  9. String name;
  10. @Reference
  11. JndiService jndiService;
  12. @Override
  13. public Object execute() throws Exception {
  14. jndiService.bind(serviceId, name);
  15. return null;
  16. }
  17. }

代码示例来源:origin: org.apache.camel.karaf/camel-karaf-commands

  1. @Command(scope = "camel", name = "rest-api-doc", description = "List the Camel REST services API documentation (requires camel-swagger-java on classpath)")
  2. @Service
  3. public class RestApiDoc extends CamelControllerImpl implements Action {
  4. @Argument(index = 0, name = "name", description = "The Camel context name where to look for the REST services", required = true, multiValued = false)
  5. @Completion(CamelContextCompleter.class)
  6. String name;
  7. public Object execute() throws Exception {
  8. RestApiDocCommand command = new RestApiDocCommand(name);
  9. return command.execute(this, System.out, System.err);
  10. }
  11. }

代码示例来源:origin: org.apache.karaf.instance/org.apache.karaf.instance.core

  1. @Command(scope = "instance", name = "status", description = "Check the current status of an instance.")
  2. @Service
  3. public class StatusCommand extends InstanceCommandSupport {
  4. @Argument(index = 0, name = "name", description = "The name of the instance", required = true, multiValued = false)
  5. @Completion(InstanceCompleter.class)
  6. private String name;
  7. protected Object doExecute() throws Exception {
  8. Instance instance = getExistingInstance(name);
  9. System.out.println(instance.getState());
  10. return null;
  11. }
  12. }

代码示例来源:origin: org.apache.karaf.jdbc/org.apache.karaf.jdbc.core

  1. @Command(scope = "jdbc", name = "ds-delete", description = "Delete a JDBC datasource")
  2. @Service
  3. public class DeleteCommand extends JdbcCommandSupport {
  4. @Argument(index = 0, name = "name", description = "The JDBC datasource name (the one used at creation time)", required = true, multiValued = false)
  5. @Completion(DataSourcesNameCompleter.class)
  6. String name;
  7. @Override
  8. public Object execute() throws Exception {
  9. this.getJdbcService().delete(name);
  10. return null;
  11. }
  12. }

代码示例来源:origin: org.apache.camel.karaf/camel-karaf-commands

  1. @Command(scope = "camel", name = "rest-show", description = "Display the Camel REST definition in XML")
  2. @Service
  3. public class RestShow extends CamelControllerImpl implements Action {
  4. @Argument(index = 0, name = "name", description = "The name of the Camel context", required = true, multiValued = false)
  5. @Completion(CamelContextCompleter.class)
  6. String name;
  7. public Object execute() throws Exception {
  8. RestShowCommand command = new RestShowCommand(name);
  9. return command.execute(this, System.out, System.err);
  10. }
  11. }

代码示例来源:origin: org.apache.camel.karaf/camel-karaf-commands

  1. @Command(scope = "camel", name = "context-start", description = "Start a Camel context.")
  2. @Service
  3. public class ContextStart extends CamelControllerImpl implements Action {
  4. @Argument(index = 0, name = "context", description = "The name of the Camel context.", required = true, multiValued = false)
  5. @Completion(CamelContextCompleter.class)
  6. String context;
  7. @Override
  8. public Object execute() throws Exception {
  9. ContextStartCommand command = new ContextStartCommand(context);
  10. return command.execute(this, System.out, System.err);
  11. }
  12. }

代码示例来源:origin: apache/karaf

  1. @Command(scope = "jndi", name = "alias", description = "Create a JNDI alias on a given name.")
  2. @Service
  3. public class AliasCommand implements Action {
  4. @Argument(index = 0, name = "name", description = "The JNDI name", required = true, multiValued = false)
  5. @Completion(NamesCompleter.class)
  6. String name;
  7. @Argument(index = 1, name = "alias", description = "The JNDI alias", required = true, multiValued = false)
  8. @Completion(ContextsCompleter.class)
  9. String alias;
  10. @Reference
  11. JndiService jndiService;
  12. @Override
  13. public Object execute() throws Exception {
  14. jndiService.alias(name, alias);
  15. return null;
  16. }
  17. }

代码示例来源:origin: org.apache.karaf.jdbc/org.apache.karaf.jdbc.core

  1. @Command(scope = "jdbc", name = "execute", description = "Execute a SQL command on a given JDBC datasource")
  2. @Parsing(JdbcParser.class)
  3. @Service
  4. public class ExecuteCommand extends JdbcCommandSupport {
  5. @Argument(index = 0, name = "datasource", description = "The JDBC datasource name, its JNDI name or service.id", required = true, multiValued = false)
  6. @Completion(DataSourcesNameCompleter.class)
  7. String datasource;
  8. @Argument(index = 1, name = "command", description = "The SQL command to execute", required = true, multiValued = false)
  9. @Completion(SqlCompleter.class)
  10. String command;
  11. @Override
  12. public Object execute() throws Exception {
  13. this.getJdbcService().execute(datasource, command);
  14. return null;
  15. }
  16. }

代码示例来源:origin: apache/karaf-cellar

  1. @Command(scope = "cluster", name = "consumer-status", description = "Status of a cluster event consumer")
  2. @Service
  3. public class ConsumerStatusCommand extends ConsumerSupport {
  4. @Argument(index = 0, name = "node", description = "The node(s) ID or alias", required = false, multiValued = true)
  5. @Completion(AllNodeCompleter.class)
  6. List<String> nodes;
  7. @Override
  8. protected Object doExecute() throws Exception {
  9. return doExecute(nodes, null);
  10. }
  11. }

代码示例来源:origin: apache/karaf-cellar

  1. @Command(scope = "cluster", name = "producer-status", description = "Status of a cluster event producer")
  2. @Service
  3. public class ProducerStatusCommand extends ProducerSupport {
  4. @Argument(index = 0, name = "node", description = "The node(s) ID or alias", required = false, multiValued = true)
  5. @Completion(AllNodeCompleter.class)
  6. List<String> nodes;
  7. @Override
  8. protected Object doExecute() throws Exception {
  9. return doExecute(nodes, null);
  10. }
  11. }

代码示例来源:origin: org.apache.camel.karaf/camel-karaf-commands

  1. @Command(scope = "camel", name = "route-reset-stats", description = "Reset route performance stats from a CamelContext")
  2. @Service
  3. public class RouteResetStats extends CamelControllerImpl implements Action {
  4. @Argument(index = 0, name = "context", description = "The name of the Camel context.", required = true, multiValued = false)
  5. @Completion(CamelContextCompleter.class)
  6. String context;
  7. @Override
  8. public Object execute() throws Exception {
  9. RouteResetStatsCommand command = new RouteResetStatsCommand(context);
  10. return command.execute(this, System.out, System.err);
  11. }
  12. }

相关文章

Completion类方法