EDeliveryApiApiHelper.java

  1. /*
  2.  * GovWay - A customizable API Gateway
  3.  * https://govway.org
  4.  *
  5.  * Copyright (c) 2005-2025 Link.it srl (https://link.it).
  6.  *
  7.  * This program is free software: you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License version 3, as published by
  9.  * the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18.  *
  19.  */
  20. package org.openspcoop2.core.config.rs.server.api.impl.api;

  21. import org.openspcoop2.core.config.rs.server.model.Api;
  22. import org.openspcoop2.core.config.rs.server.model.ApiAzione;
  23. import org.openspcoop2.core.config.rs.server.model.ApiRisorsa;
  24. import org.openspcoop2.core.registry.AccordoServizioParteComune;
  25. import org.openspcoop2.core.registry.Operation;
  26. import org.openspcoop2.core.registry.Resource;
  27. import org.openspcoop2.protocol.sdk.properties.ProtocolProperties;

  28. /**
  29.  * ApiApiHelper
  30.  *
  31.  * @author $Author$
  32.  * @version $Rev$, $Date$
  33.  *
  34.  */
  35. public class EDeliveryApiApiHelper {

  36.     public static ProtocolProperties getProtocolProperties(Api body) throws Exception {
  37.         return null;
  38.     }

  39.     public static ProtocolProperties getProtocolProperties(ApiRisorsa body)throws Exception  {
  40.         return null;
  41.     }

  42.     public static ProtocolProperties getProtocolProperties(ApiAzione body)throws Exception  {
  43.         return null;
  44.     }

  45.     public static void populateApiRisorsaWithProtocolInfo(AccordoServizioParteComune as, Resource res, ApiEnv env, ApiRisorsa ret) throws Exception {}

  46.     public static void populateApiAzioneWithProtocolInfo(AccordoServizioParteComune as, Operation az, ApiEnv env, ApiAzione ret) throws Exception {}

  47. }