All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.labs64.netlicensing.service.LicenseService Maven / Gradle / Ivy

There is a newer version: 2.10.0-jdk17
Show newest version
/* Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.labs64.netlicensing.service;

import java.util.HashMap;
import java.util.Map;

import javax.ws.rs.core.Form;

import org.apache.commons.lang3.StringUtils;

import com.labs64.netlicensing.domain.Constants;
import com.labs64.netlicensing.domain.entity.License;
import com.labs64.netlicensing.domain.vo.Context;
import com.labs64.netlicensing.domain.vo.Page;
import com.labs64.netlicensing.exception.NetLicensingException;
import com.labs64.netlicensing.util.CheckUtils;

/**
 * Provides license handling routines.
 * 

* Licenses always belong to a certain {@linkplain LicenseeService licensee}. Licenses are cloned off the corresponding * {@linkplain LicenseTemplateService license templates} when a licensee obtains them. On validation request the * licenses that belong to a licensee are processed according to the licensing models configured for the product * modules, and the validation result is sent back for further processing to the requesting side (which is typically a * vendor service or a program executed by the end user). *

* In simple cases there is no need to work with licenses directly via NetLicensing API, as licenses are assigned either * by a licensing model automatically (e.g. evaluation licenses) or actively purchased by a licensee via NetLicensing * Shop. However, for some complex licensing models, there may be a need to assign licenses to a licensee * programmatically from the vendor software. */ public class LicenseService { /** * Creates new license object with given properties. * * @param context * determines the vendor on whose behalf the call is performed * @param licenseeNumber * parent licensee to which the new license is to be added * @param licenseTemplateNumber * license template that the license is created from * @param transactionNumber * For privileged logins specifies transaction for the license creation. For regular logins new * transaction always created implicitly, and the operation will be in a separate transaction. * Transaction is generated with the provided transactionNumber, or, if transactionNumber is null, with * auto-generated number. * @param license * non-null properties will be taken for the new object, null properties will either stay null, or will * be set to a default value, depending on property. * @return the newly created license object * @throws com.labs64.netlicensing.exception.NetLicensingException * any subclass of {@linkplain com.labs64.netlicensing.exception.NetLicensingException}. These exceptions will be transformed to the * corresponding service response messages. */ public static License create(final Context context, final String licenseeNumber, final String licenseTemplateNumber, final String transactionNumber, final License license) throws NetLicensingException { CheckUtils.paramNotNull(license, "license"); final Form form = license.asRequestForm(); if (StringUtils.isNotBlank(licenseeNumber)) { form.param(Constants.Licensee.LICENSEE_NUMBER, licenseeNumber); } if (StringUtils.isNotBlank(licenseTemplateNumber)) { form.param(Constants.LicenseTemplate.LICENSE_TEMPLATE_NUMBER, licenseTemplateNumber); } if (StringUtils.isNotBlank(transactionNumber)) { form.param(Constants.Transaction.TRANSACTION_NUMBER, transactionNumber); } return NetLicensingService.getInstance().post(context, Constants.License.ENDPOINT_PATH, form, License.class); } /** * Gets license by its number. * * @param context * determines the vendor on whose behalf the call is performed * @param number * the license number * @return the license * @throws com.labs64.netlicensing.exception.NetLicensingException * any subclass of {@linkplain com.labs64.netlicensing.exception.NetLicensingException}. These exceptions will be transformed to the * corresponding service response messages. */ public static License get(final Context context, final String number) throws NetLicensingException { return NetLicensingService.getInstance().get(context, Constants.License.ENDPOINT_PATH + "/" + number, null, License.class); } /** * Returns licenses of a vendor. * * @param context * determines the vendor on whose behalf the call is performed * @param filter * reserved for the future use, must be omitted / set to NULL * @return list of licenses (of all products) or null/empty list if nothing found. * @throws com.labs64.netlicensing.exception.NetLicensingException * any subclass of {@linkplain com.labs64.netlicensing.exception.NetLicensingException}. These exceptions will be transformed to the * corresponding service response messages. */ public static Page list(final Context context, final String filter) throws NetLicensingException { final Map params = new HashMap(); if (StringUtils.isNotBlank(filter)) { params.put(Constants.FILTER, filter); } return NetLicensingService.getInstance().list(context, Constants.License.ENDPOINT_PATH, params, License.class); } /** * Updates license properties. * * @param context * determines the vendor on whose behalf the call is performed * @param number * license number * @param transactionNumber * transaction for the license update. Created implicitly if transactionNumber is null. In this case the * operation will be in a separate transaction. * @param license * non-null properties will be updated to the provided values, null properties will stay unchanged. * @return updated license. * @throws com.labs64.netlicensing.exception.NetLicensingException * any subclass of {@linkplain com.labs64.netlicensing.exception.NetLicensingException}. These exceptions will be transformed to the * corresponding service response messages. */ public static License update(final Context context, final String number, final String transactionNumber, final License license) throws NetLicensingException { CheckUtils.paramNotEmpty(number, "number"); CheckUtils.paramNotNull(license, "license"); final Form form = license.asRequestForm(); if (StringUtils.isNotBlank(transactionNumber)) { form.param(Constants.Transaction.TRANSACTION_NUMBER, transactionNumber); } return NetLicensingService.getInstance().post(context, Constants.License.ENDPOINT_PATH + "/" + number, form, License.class); } /** * Deletes license. *

* When any license is deleted, corresponding transaction is created automatically. * * @param context * determines the vendor on whose behalf the call is performed * @param number * license number * @param forceCascade * if true, any entities that depend on the one being deleted will be deleted too * @throws com.labs64.netlicensing.exception.NetLicensingException * any subclass of {@linkplain com.labs64.netlicensing.exception.NetLicensingException}. These exceptions will be transformed to the * corresponding service response messages. */ public static void delete(final Context context, final String number, final boolean forceCascade) throws NetLicensingException { CheckUtils.paramNotEmpty(number, "number"); final Map params = new HashMap(); params.put(Constants.CASCADE, forceCascade); NetLicensingService.getInstance().delete(context, Constants.License.ENDPOINT_PATH + "/" + number, params); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy