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

com.frameworkset.platform.ldap.AttrBean Maven / Gradle / Ivy

There is a newer version: 5.6.4
Show newest version
package com.frameworkset.platform.ldap;

public class AttrBean implements java.io.Serializable {
  private String attrName;  //属性名
  private String newValue;//属性值
  public AttrBean() {

  }
 public AttrBean(String name,String value) {
	  this.attrName = name;
	  this.newValue = value;
   }
  public String getAttrName() {
    return attrName;
  }
  public void setAttrName(String attrName) {
    this.attrName = attrName;
  }
  public String getNewValue() {
    return newValue;
  }
  public void setNewValue(String newValue) {
    this.newValue = newValue;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy