org.glassfish.admin.rest.results.ActionReportResult Maven / Gradle / Ivy
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2010 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 [2019-2020] [Payara Foundation and/or its affiliates]
package org.glassfish.admin.rest.results;
import com.sun.enterprise.admin.report.ActionReporter;
import org.glassfish.admin.rest.resources.LeafResource;
import org.glassfish.admin.rest.resources.LeafResource.LeafContent;
import org.glassfish.admin.rest.utils.xml.RestActionReporter;
import org.jvnet.hk2.config.ConfigBean;
/**
* Response information object. Returned on call to GET methods on command
* resources. Information used by provider to generate the appropriate output.
*
* @author Ludovic Champenois
*/
public class ActionReportResult extends Result {
private final RestActionReporter reporter;
private final OptionsResult metaData;
private ConfigBean entity;
private String commandDisplayName = null;
private LeafResource.LeafContent leafContent = null;
public LeafContent getLeafContent() {
return leafContent;
}
public void setLeafContent(LeafContent leafContent) {
this.leafContent = leafContent;
}
public ActionReportResult(RestActionReporter r) {
this(null, r);
}
public ActionReportResult(RestActionReporter r, OptionsResult metaData) {
this(null, r, metaData);
}
public ActionReportResult(RestActionReporter r, ConfigBean entity, OptionsResult metaData) {
this(r, metaData);
this.entity = entity;
}
public ActionReportResult(String name, RestActionReporter r) {
this(name, r, new OptionsResult());
}
public ActionReportResult(String name, RestActionReporter r, OptionsResult metaData) {
super(name);
reporter = r;
this.metaData = metaData;
}
public ActionReportResult(String name, RestActionReporter r, OptionsResult metaData, String displayName) {
super(name);
reporter = r;
this.metaData = metaData;
commandDisplayName = displayName;
}
/**
* Returns the result string this object represents
*/
public ActionReporter getActionReport() {
return reporter;
}
/**
* Returns display name for command associated with the command resource.
*/
public String getCommandDisplayName() {
return commandDisplayName;
}
/**
* change display name for command associated with the command resource.
*/
public void setCommandDisplayName(String s) {
commandDisplayName =s;
}
/**
* Returns OptionsResult - the meta-data of this resource.
*/
public OptionsResult getMetaData() {
return metaData;
}
public ConfigBean getEntity() {
return entity;
}
@Override
public String toString() {
return super.toString() + "[actionReport: " + getActionReport() + "]";
}
}