rwatler 2005/02/01 19:11:35
Added: jetspeed-api/src/java/org/apache/jetspeed/tools/deploy
Deploy.java DeployFactory.java
Log:
War Infusion PAM Implementation
Revision Changes Path
1.1
jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/tools/deploy/Deploy.java
Index: Deploy.java
===================================================================
/*
* Copyright 2000-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
under
* the License.
*/
package org.apache.jetspeed.tools.deploy;
/**
* Deploy
*
* @author <a href="mailto:[EMAIL PROTECTED]">Randy Watler</a>
* @version $Id: Deploy.java,v 1.1 2005/02/02 03:11:35 rwatler Exp $
*/
public interface Deploy
{
}
1.1
jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/tools/deploy/DeployFactory.java
Index: DeployFactory.java
===================================================================
/*
* Copyright 2000-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
under
* the License.
*/
package org.apache.jetspeed.tools.deploy;
/**
* Factory component used to create Deploy instances
*
* @author <a href="mailto:[EMAIL PROTECTED]">Randy Watler</a>
* @version $Id: DeployFactory.java,v 1.1 2005/02/02 03:11:35 rwatler Exp $
*/
public interface DeployFactory
{
/**
* getInstance
*
* @param inputWarPath
* @param outputWarPath
* @param registerAtInit
* @return Deploy instance
*/
public Deploy getInstance(String inputWarPath, String outputWarPath,
boolean registerAtInit) throws Exception;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]