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

com.xcase.open.impl.simple.transputs.GetClientRequestImpl Maven / Gradle / Ivy

/**
 * Copyright 2016 Xcase All rights reserved.
 */
package com.xcase.open.impl.simple.transputs;

import com.xcase.open.transputs.GetClientRequest;

/**
 *
 * @author martin
 */
public class GetClientRequestImpl extends OpenRequestImpl implements GetClientRequest {

    private String clientId;
    private String[] properties;

    public String getClientId() {
        return this.clientId;
    }

    public void setClientId(String clientId) {
        this.clientId = clientId;
    }

    public String[] getProperties() {
        return properties;
    }

    public void setProperties(String[] properties) {
        this.properties = properties;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy