Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2009-2017 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, 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/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
// Portions Copyright [2016-2023] [Payara Foundation and/or its affiliates]
package org.glassfish.admin.rest.resources;
import com.sun.enterprise.config.serverbeans.JavaConfig;
import com.sun.enterprise.universal.xml.MiniXmlParser.JvmOption;
import com.sun.enterprise.util.JDK;
import org.jvnet.hk2.config.TransactionFailure;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.Response;
import jakarta.ws.rs.Consumes;
import jakarta.ws.rs.DefaultValue;
import jakarta.ws.rs.DELETE;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.OPTIONS;
import jakarta.ws.rs.POST;
import jakarta.ws.rs.PUT;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.QueryParam;
import jakarta.ws.rs.WebApplicationException;
import org.glassfish.admin.rest.provider.MethodMetaData;
import org.glassfish.admin.rest.results.ActionReportResult;
import org.glassfish.admin.rest.results.OptionsResult;
import org.glassfish.admin.rest.utils.xml.RestActionReporter;
import org.glassfish.api.ActionReport;
import com.sun.enterprise.util.LocalStringManagerImpl;
import java.util.ArrayList;
import java.util.Collections;
import org.glassfish.admin.rest.utils.ResourceUtil;
import org.glassfish.admin.rest.utils.Util;
import org.jvnet.hk2.config.Dom;
import static org.glassfish.admin.rest.utils.Util.decode;
import static org.glassfish.admin.rest.utils.Util.upperCaseFirstLetter;
/**
* @author Rajeshwar Patil
*/
@Produces({MediaType.TEXT_HTML, MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.APPLICATION_FORM_URLENCODED})
public abstract class CollectionLeafResource extends AbstractResource {
protected List entity;
protected Dom parent;
protected String tagName;
protected String target;
protected String profiler = "false";
protected boolean isJvmOptions = false;
public static final LocalStringManagerImpl localStrings = new LocalStringManagerImpl(CollectionLeafResource.class);
private static final String MIN_VERSION = "minVersion";
private static final String MAX_VERISON = "maxVersion";
private static final String VENDOR = "vendor";
private static final String JVM_OPTION = "jvmOption";
/** Creates a new instance of xxxResource */
public CollectionLeafResource() {
}
public void setEntity(List p) {
entity = p;
}
public List getEntity() {
return entity;
}
public void setParentAndTagName(Dom parent, String tagName) {
this.parent = parent;
this.tagName = tagName;
if (parent != null) {
synchronized (parent) {
if (parent.getImplementationClass().equals(JavaConfig.class) && isJvmOptions(tagName)) {
JavaConfig javaConfig = (JavaConfig) parent.get();
if (javaConfig != null) {
entity = javaConfig.getJvmRawOptions();
} else {
entity = parent.leafElements(tagName);
}
isJvmOptions = true;
} else {
entity = parent.leafElements(tagName);
}
}
if (parent.getImplementationClass().equals(JavaConfig.class)) {
target = parent.parent().attribute("name");
} else {
target = parent.parent().parent().attribute("name");
profiler = "true";
}
}
}
@GET
public Response get(@QueryParam("expandLevel") @DefaultValue("1") int expandLevel) {
if (getEntity() == null) {
throw new WebApplicationException(Response.Status.NOT_FOUND);
}
return Response.ok(buildActionReportResult()).build();
}
@POST //create
@Consumes({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.APPLICATION_FORM_URLENCODED})
public Response create(HashMap data) throws TransactionFailure {
//hack-1 : support delete method for html
//Currently, browsers do not support delete method. For html media,
//delete operations can be supported through POST. Redirect html
//client POST request for delete operation to DELETE method.
if ((data.containsKey("operation")) &&
(data.get("operation").equals("__deleteoperation"))) {
data.remove("operation");
return delete(data);
}
String postCommand = getPostCommand();
Map payload = null;
Map existing = null;
if (isJvmOptions(postCommand)) {
existing = deleteExistingOptions();
payload = processData(data, false);
} else {
payload = data;
}
// Create all JVM options.
Response response = runCommand(postCommand, payload, "rest.resource.create.message",
"\"{0}\" created successfully.", "rest.resource.post.forbidden","POST on \"{0}\" is forbidden.");
if (response.getStatus() != 200) {
// If creating JVM options is error, restore JVM options with exsiting.
payload = processData(existing, false);
runCommand(postCommand, payload, "rest.resource.create.message",
"\"{0}\" created successfully.", "rest.resource.post.forbidden","POST on \"{0}\" is forbidden.");
}
return response;
}
@PUT //create
@Consumes({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.APPLICATION_FORM_URLENCODED})
@Deprecated
public Response add(HashMap data) throws TransactionFailure {
String postCommand = getPostCommand();
Map payload = null;
if (isJvmOptions(postCommand)) {
payload = processData(data, false);
} else {
payload = data;
}
return runCommand(postCommand, payload, "rest.resource.create.message",
"\"{0}\" created successfully.", "rest.resource.post.forbidden","POST on \"{0}\" is forbidden.");
}
@DELETE //delete
@Consumes({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.APPLICATION_FORM_URLENCODED})
public Response delete(HashMap data) {
if (data == null) {
data = new HashMap();
}
ResourceUtil.addQueryString(uriInfo.getQueryParameters(), data);
String deleteCommand = getDeleteCommand();
if (isJvmOptions(deleteCommand)) {
if (data.isEmpty()) {
deleteExistingOptions();
return Response.ok().build();
} else {
return runCommand(deleteCommand, processData(data, true), "rest.resource.delete.message",
"\"{0}\" deleted successfully.", "rest.resource.delete.forbidden", "DELETE on \"{0}\" is forbidden.");
}
} else {
return runCommand(deleteCommand, data, "rest.resource.delete.message",
"\"{0}\" deleted successfully.", "rest.resource.delete.forbidden", "DELETE on \"{0}\" is forbidden.");
}
}
@OPTIONS
@Produces({MediaType.TEXT_HTML, MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
public Response options() {
return Response.ok(buildActionReportResult()).build();
}
protected ActionReportResult buildActionReportResult() {
RestActionReporter ar = new RestActionReporter();
final String typeKey = upperCaseFirstLetter((decode(getName())));
ar.setActionDescription(typeKey);
if (isJvmOptions) {
List optionsEntity = getEntity();
List