Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export AddRequest Struct variables in add.go #60

Merged
merged 6 commits into from Jun 7, 2016

Commits on Apr 19, 2016

  1. Add get methods to struct AddRequest

    wrote get methods to struct AddRequest, as the struct variables are not global, and if I want to compare two add requests before populating it.
    nohupped committed Apr 19, 2016
    Copy the full SHA
    7dc2eff View commit details
    Browse the repository at this point in the history
  2. Changed get method names

    Changed get method names
    nohupped committed Apr 19, 2016
    Copy the full SHA
    0c240fd View commit details
    Browse the repository at this point in the history
  3. Added a SetDN method to AddRequest.

    Added a SetDN method to AddRequest. A usecase is, the result returned from AD is of uppercase realm for DN, and if a comparison needs to be done against an openldap result, it has to be converted to something similar in lowercase. This method makes it easy, as the SetDN sets the value to the pointer. Eg: ```i.SetDN(r.ReplaceAllStringFunc(input, func(m string) string {
    			return strings.ToLower(m)
    		}))```
    nohupped committed Apr 19, 2016
    Copy the full SHA
    f2d724d View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2016

  1. Copy the full SHA
    e59ca7b View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2016

  1. Copy the full SHA
    7fc4f0e View commit details
    Browse the repository at this point in the history

Commits on May 2, 2016

  1. Copy the full SHA
    462eb22 View commit details
    Browse the repository at this point in the history