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

com.powsybl.iidm.serde.anonymizer.SimpleAnonymizer Maven / Gradle / Ivy

/**
 * Copyright (c) 2016, RTE (http://www.rte-france.com)
 * 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/.
 * SPDX-License-Identifier: MPL-2.0
 */
package com.powsybl.iidm.serde.anonymizer;

import com.powsybl.commons.util.StringAnonymizer;
import com.powsybl.iidm.network.Country;

import java.io.BufferedReader;
import java.io.BufferedWriter;

/**
 * @author Geoffroy Jamgotchian {@literal }
 */
public class SimpleAnonymizer implements Anonymizer {

    private final StringAnonymizer stringAnonymizer = new StringAnonymizer();

    @Override
    public String anonymizeString(String str) {
        return stringAnonymizer.anonymize(str);
    }

    @Override
    public String deanonymizeString(String str) {
        return stringAnonymizer.deanonymize(str);
    }

    @Override
    public Country anonymizeCountry(Country country) {
        return country;
    }

    @Override
    public Country deanonymizeCountry(Country country) {
        return country;
    }

    @Override
    public void read(BufferedReader reader) {
        stringAnonymizer.readCsv(reader);
    }

    @Override
    public void write(BufferedWriter writer) {
        stringAnonymizer.writeCsv(writer);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy