Browse Source

Moved security related classes into new package

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270496 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
2ed1541485
8 changed files with 12 additions and 12 deletions
  1. +1
    -1
      proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/security/DistinguishedName.java
  2. +1
    -1
      proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/security/DnameParam.java
  3. +1
    -1
      proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/security/GenerateKey.java
  4. +3
    -3
      proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/security/SignJar.java
  5. +1
    -1
      proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/security/DistinguishedName.java
  6. +1
    -1
      proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/security/DnameParam.java
  7. +1
    -1
      proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/security/GenerateKey.java
  8. +3
    -3
      proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/security/SignJar.java

proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/DistinguishedName.java → proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/security/DistinguishedName.java View File

@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.tools.ant.taskdefs;
package org.apache.tools.ant.taskdefs.security;

import java.util.ArrayList;
import java.util.Iterator;

proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/DnameParam.java → proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/security/DnameParam.java View File

@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.tools.ant.taskdefs;
package org.apache.tools.ant.taskdefs.security;

public final class DnameParam
{

proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/GenerateKey.java → proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/security/GenerateKey.java View File

@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.tools.ant.taskdefs;
package org.apache.tools.ant.taskdefs.security;

import java.util.ArrayList;
import java.util.Iterator;

proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/SignJar.java → proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/security/SignJar.java View File

@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.tools.ant.taskdefs;
package org.apache.tools.ant.taskdefs.security;

import java.io.File;
import java.io.IOException;
@@ -27,9 +27,9 @@ import org.apache.tools.ant.types.FileSet;
* @author Nick Fortescue <a href="mailto:nick@ox.compsoc.net">
* nick@ox.compsoc.net</a>
*/
public class SignJar extends Task
public class SignJar
extends Task
{

/**
* the filesets of the jars to sign
*/

proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/DistinguishedName.java → proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/security/DistinguishedName.java View File

@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.tools.ant.taskdefs;
package org.apache.tools.ant.taskdefs.security;

import java.util.ArrayList;
import java.util.Iterator;

proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/DnameParam.java → proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/security/DnameParam.java View File

@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.tools.ant.taskdefs;
package org.apache.tools.ant.taskdefs.security;

public final class DnameParam
{

proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/GenerateKey.java → proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/security/GenerateKey.java View File

@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.tools.ant.taskdefs;
package org.apache.tools.ant.taskdefs.security;

import java.util.ArrayList;
import java.util.Iterator;

proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/SignJar.java → proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/security/SignJar.java View File

@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.tools.ant.taskdefs;
package org.apache.tools.ant.taskdefs.security;

import java.io.File;
import java.io.IOException;
@@ -27,9 +27,9 @@ import org.apache.tools.ant.types.FileSet;
* @author Nick Fortescue <a href="mailto:nick@ox.compsoc.net">
* nick@ox.compsoc.net</a>
*/
public class SignJar extends Task
public class SignJar
extends Task
{

/**
* the filesets of the jars to sign
*/

Loading…
Cancel
Save