
org.ocelotds.dashboard.services.ServiceServices Maven / Gradle / Ivy
The newest version!
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package org.ocelotds.dashboard.services;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.List;
import javax.enterprise.inject.Any;
import javax.enterprise.inject.Instance;
import javax.inject.Inject;
import javax.servlet.http.HttpSession;
import org.ocelotds.Constants;
import org.ocelotds.annotations.DashboardOnDebug;
import org.ocelotds.annotations.DataService;
import org.ocelotds.core.UnProxyClassServices;
import org.ocelotds.dashboard.objects.OcelotMethod;
import org.ocelotds.dashboard.objects.OcelotService;
import org.ocelotds.dashboard.security.DashboardSecureProvider;
import org.ocelotds.marshalling.exceptions.JsonMarshallerException;
import org.ocelotds.objects.Options;
import org.ocelotds.security.OcelotSecured;
/**
*
* @author hhfrancois
*/
@DataService
@DashboardOnDebug
@OcelotSecured(provider = DashboardSecureProvider.class)
public class ServiceServices {
@Inject
private ServiceTools serviceTools;
@Inject
private UnProxyClassServices unProxyClassServices;
@Any
@Inject
@DataService
private Instance
© 2015 - 2025 Weber Informatics LLC | Privacy Policy