Package com.sun.jini.start

Examples of com.sun.jini.start.SharedActivationGroupDescriptor


  checkProvider(null);
  checkTrustStore(null);
  checkDiscoveryStore(null);
  checkKeyStore(null);
  checkLoginConfigs(null);
  SharedActivationGroupDescriptor gd = envCheck.getGroupDescriptor();
  if (gd != null) {
      checkProvider(gd);
      checkTrustStore(gd);
      checkDiscoveryStore(gd);
      checkKeyStore(gd);
View Full Code Here


     *
     * @param d the descriptor to check, which must be a
     *        <code>SharedActivatableServiceDescriptor</code
     */
    private void checkDirectory(SharedActivatableServiceDescriptor d) {
  SharedActivationGroupDescriptor gd = envCheck.getGroupDescriptor();
  String source = getString("descfor", d.getImplClassName());
  Object o = envCheck.launch(d, gd, taskName("GetEntriesTask"));
  if (o instanceof String[]) {
      checkEntries((String[]) o, d, source);
  } else if (o instanceof String) {
View Full Code Here

  if (dir == null) {
      return getString("nulldir");
  }
  String taskName = taskName("CheckDirTask");
  String[] args = new String[]{dir};
  SharedActivationGroupDescriptor g =  envCheck.getGroupDescriptor();
  return envCheck.launch(d, g, taskName, args);
    }
View Full Code Here

      checkPlatform(classpath, getString("jarfile"));
  } else {
      classpath = envCheck.getClasspath();
      checkPlatform(classpath, getString("cmdline"));
  }
  SharedActivationGroupDescriptor gd = envCheck.getGroupDescriptor();
  if (gd != null) {
      classpath = gd.getClasspath();
      checkPlatform(classpath, getString("grouppath"));
  }
    }
View Full Code Here

      source = getString("propsource");
      codebase = envCheck.getProperty("java.rmi.server.codebase");
      doChecks(null, null, source, codebase);
  } else {
      ServiceDescriptor[] sd = envCheck.getDescriptors();
      SharedActivationGroupDescriptor g = envCheck.getGroupDescriptor();
      for (int i = 0; i < sd.length; i++) {
    if (sd[i] instanceof NonActivatableServiceDescriptor) {
        NonActivatableServiceDescriptor d =
      (NonActivatableServiceDescriptor) sd[i];
        source = getString("desc") + " " + d.getImplClassName();
View Full Code Here

    private EnvCheck envCheck;

    public void run(EnvCheck envCheck) {
  this.envCheck = envCheck;
  checkLoggingConfig(null);
  SharedActivationGroupDescriptor gd = envCheck.getGroupDescriptor();
  if (gd != null) {
      checkLoggingConfig(gd);
  }
    }
View Full Code Here

     * <code>SharedActivationGroupDescriptor</code> available from the
     * container, invoke a subtask which verifies that the VM used to run that
     * group is at least version 1.4.
     */
    private void checkGroupVM() {
  SharedActivationGroupDescriptor gd = envCheck.getGroupDescriptor();
  if (gd != null) {
      String source;
      String serverCommand = gd.getServerCommand();
      if (serverCommand == null) {
    source = getString("cmdlinejava", envCheck.getJavaCmd());
      } else {
    source = getString("groupjava", serverCommand);
      }
View Full Code Here

     * container.
     */
    public void run(EnvCheck envCheck) {
  this.envCheck = envCheck;
  checkPolicy(null);
  SharedActivationGroupDescriptor gd = envCheck.getGroupDescriptor();
  if (gd != null) {
      checkPolicy(gd);
  }
    }
View Full Code Here

TOP

Related Classes of com.sun.jini.start.SharedActivationGroupDescriptor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.