org.glassfish.jdbc.admin.cli.internal.GetValidationClassNames Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package org.glassfish.jdbc.admin.cli.internal;
import com.sun.enterprise.config.serverbeans.Resources;
import org.glassfish.jdbcruntime.service.JdbcAdminServiceImpl;
import org.glassfish.api.ActionReport;
import org.glassfish.api.Param;
import org.glassfish.api.admin.AdminCommand;
import org.glassfish.api.admin.AdminCommandContext;
import org.glassfish.api.admin.CommandLock;
import org.jvnet.hk2.annotations.Service;
import org.glassfish.hk2.api.PerLookup;
import java.util.ArrayList;
import java.util.Properties;
import java.util.Set;
import org.glassfish.api.admin.RestEndpoint;
import org.glassfish.api.admin.RestEndpoints;
import jakarta.inject.Inject;
/**
* @author Jagadish Ramu
*/
@Service(name = "_get-validation-class-names")
@PerLookup
@CommandLock(CommandLock.LockType.NONE)
@RestEndpoints({
@RestEndpoint(configBean=Resources.class,
opType=RestEndpoint.OpType.GET,
path="get-validation-class-names",
description="Get Validation Class Names")
})
public class GetValidationClassNames implements AdminCommand {
@Inject
private JdbcAdminServiceImpl jdbcAdminService;
@Param
private String className;
/**
* @inheritDoc
*/
public void execute(AdminCommandContext context) {
final ActionReport report = context.getActionReport();
try {
Set validationClassNames = jdbcAdminService.getValidationClassNames(className);
Properties extraProperties = new Properties();
extraProperties.put("validationClassNames", new ArrayList(validationClassNames));
report.setExtraProperties(extraProperties);
} catch (Exception e) {
report.setMessage("_get-validation-class-names failed : " + e.getMessage());
report.setActionExitCode(ActionReport.ExitCode.FAILURE);
report.setFailureCause(e);
return;
}
ActionReport.ExitCode ec = ActionReport.ExitCode.SUCCESS;
report.setActionExitCode(ec);
}
}