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

com.dakuupa.struts.dto.KeyValuePair Maven / Gradle / Ivy

Go to download

Provides Struts 2 developers with easy to use framework for building CRUD (Create, read, update, delete) applications using convention over configuration. Includes several utility classes to facilitate quick Struts 2 app development.

The newest version!
package com.dakuupa.struts.dto;

/**
 *
 * @author ETWilliams
 */
public class KeyValuePair {

    String key;
    String displayName;

    public KeyValuePair(String key, String displayName) {
        this.key = key;
        this.displayName = displayName;
    }

    public String getDisplayName() {
        return displayName;
    }

    public void setDisplayName(String displayName) {
        this.displayName = displayName;
    }

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        this.key = key;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy