All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.glassfish.deployment.client.TargetOwner Maven / Gradle / Ivy

There is a newer version: 10.0-b28
Show newest version
/*
 * The contents of this file are subject to the terms
 * of the Common Development and Distribution License
 * (the License).  You may not use this file except in
 * compliance with the License.
 *
 * You can obtain a copy of the license at
 * https://glassfish.dev.java.net/public/CDDLv1.0.html or
 * glassfish/bootstrap/legal/CDDLv1.0.txt.
 * See the License for the specific language governing
 * permissions and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL
 * Header Notice in each file and include the License file
 * at glassfish/bootstrap/legal/CDDLv1.0.txt.
 * If applicable, add the following below the CDDL Header,
 * with the fields enclosed by brackets [] replaced by
 * you own identifying information:
 * "Portions Copyrighted [year] [name of copyright owner]"
 *
 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
 */
package org.glassfish.deployment.client;

import javax.enterprise.deploy.spi.Target;
import javax.enterprise.deploy.spi.TargetModuleID;
import javax.enterprise.deploy.spi.status.ClientConfiguration;

import java.io.IOException;

/**
 * Represents any type of owner of a Target.
 * 

* Each Target object needs to know what object created it so it can * delegate certain task to that object. Different classes that connect to the * admin back-end in different ways can create Target objects, so this interface * prescribes the behavior that each such "owner" of Targets must provide. *

* Fully-formed Target objects will have links back to their respective TargetOwner * objects. * * @author tjquinn */ public interface TargetOwner { /** * Creates a single {@link Target} with the given name. * @param name the name of the Target to be returned * @return a new Target */ public Target createTarget(String name); /** * Creates several {@link Target} objects with the specified names. * @param names the names of the targets to be returned * @return new Targets, one for each name specified */ public Target[] createTargets(String[] names); /** * Returns the Web URL for the specified module on the {@link Target} * implied by the TargetModuleID. * @param tmid * @return web url */ public String getWebURL(TargetModuleID tmid); /** * Sets the Web URL for the specified module on the {@link Target} implied * by the TargetModuleID. * represents a Web module or submodule on a Target. * @param tmid * @param the URL */ public void setWebURL(TargetModuleID tmid, String webURL); /** * Exports the Client stub jars to the given location. * @param appName The name of the application or module. * @param destDir The directory into which the stub jar file * should be exported. * @return the absolute location to the main jar file. */ public String exportClientStubs(String appName, String destDir) throws IOException; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy