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

com.alachisoft.ncache.licensing.config.NCacheInfo Maven / Gradle / Ivy

//  Copyright (c) 2020 Alachisoft
//  
//  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.alachisoft.ncache.licensing.config;


public class NCacheInfo {

    private ProductInfo privateProduct;
    private UserInfo privateUserInfo;
    private DeploymentInfo privateDeploymentInfo;


    public final ProductInfo getProduct() {
        return privateProduct;
    }

    public final void setProduct(ProductInfo value) {
        privateProduct = value;
    }

    public final UserInfo getUserInfo() {
        return privateUserInfo;
    }

    public final void setUserInfo(UserInfo value) {
        privateUserInfo = value;
    }

    public final DeploymentInfo getDeploymentInfo() {
        return privateDeploymentInfo;
    }

    public final void setDeploymentInfo(DeploymentInfo value) {
        privateDeploymentInfo = value;
    }

    public String getXmlString() {
        String xml = "";

        xml += getProduct().ToXml();

        xml += getUserInfo().ToXml();

        xml += getDeploymentInfo().ToXml();

        xml += "";
        return xml;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy