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

com.dtsx.astra.sdk.org.domain.KeyRegionDefinition Maven / Gradle / Ivy

There is a newer version: 1.2.9
Show newest version
package com.dtsx.astra.sdk.org.domain;

import java.io.Serializable;

/**
 * Hold key region.
 *
 * @author Cedrick LUNVEN (@clunven)
 */
public class KeyRegionDefinition implements Serializable {

    /** Serial number. */
    private static final long serialVersionUID = 5963216153488939655L;
    
    /** key identifier. */
    private String keyID;
    
    /** region. */
    private String region;

    /**
     * Default constructor.
     */
    public KeyRegionDefinition() {}

    /**
     * Getter accessor for attribute 'keyID'.
     *
     * @return
     *       current value of 'keyID'
     */
    public String getKeyID() {
        return keyID;
    }

    /**
     * Setter accessor for attribute 'keyID'.
     * @param keyID
     * 		new value for 'keyID '
     */
    public void setKeyID(String keyID) {
        this.keyID = keyID;
    }

    /**
     * Getter accessor for attribute 'region'.
     *
     * @return
     *       current value of 'region'
     */
    public String getRegion() {
        return region;
    }

    /**
     * Setter accessor for attribute 'region'.
     * @param region
     * 		new value for 'region '
     */
    public void setRegion(String region) {
        this.region = region;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy