Class WsStemQueryFilter

java.lang.Object
edu.internet2.middleware.grouper.ws.soap_v2_2.WsStemQueryFilter

public class WsStemQueryFilter extends Object
this represents a query which can be and'ed or or'ed
  • Constructor Details

    • WsStemQueryFilter

      public WsStemQueryFilter()
  • Method Details

    • getStemQueryFilterType

      public String getStemQueryFilterType()
      findStemType is the WsFindStemType enum for which type of find is happening: e.g. FIND_BY_STEM_UUID, FIND_BY_STEM_NAME, FIND_BY_STEM_NAME, FIND_BY_APPROXIMATE_ATTRIBUTE, FIND_BY_ATTRIBUTE, FIND_BY_TYPE, AND, OR, MINUS;
      Returns:
      the findStemType
    • setStemQueryFilterType

      public void setStemQueryFilterType(String findStemType1)
      findStemType is the WsFindStemType enum for which type of find is happening: e.g. FIND_BY_STEM_UUID, FIND_BY_STEM_NAME, FIND_BY_STEM_NAME, FIND_BY_APPROXIMATE_ATTRIBUTE, FIND_BY_ATTRIBUTE, FIND_BY_TYPE, AND, OR, MINUS;
      Parameters:
      findStemType1 - the findStemType to set
    • getStemName

      public String getStemName()
      stemName search by stem name (must match exactly), cannot use other params with this
      Returns:
      the stemName
    • setStemName

      public void setStemName(String stemName1)
      stemName search by stem name (must match exactly), cannot use other params with this
      Parameters:
      stemName1 - the stemName to set
    • getParentStemName

      public String getParentStemName()
      parentStemName will return stems only in this stem
      Returns:
      the parentStemName
    • setParentStemName

      public void setParentStemName(String stemName1)
      parentStemName will return stems only in this stem
      Parameters:
      stemName1 - the parentStemName to set
    • getParentStemNameScope

      public String getParentStemNameScope()
      parentStemNameScope if searching by stem, ONE_LEVEL is for one level, ALL_IN_SUBTREE will return all in sub tree. Default is ALL_IN_SUBTREE
      Returns:
      the parentStemNameScope
    • setParentStemNameScope

      public void setParentStemNameScope(String stemNameScope1)
      parentStemNameScope if searching by stem, ONE_LEVEL is for one level, ALL_IN_SUBTREE will return all in sub tree. Default is ALL_IN_SUBTREE
      Parameters:
      stemNameScope1 - the parentStemNameScope to set
    • getStemUuid

      public String getStemUuid()
      stemUuid search by stem uuid (must match exactly), cannot use other
      Returns:
      the stemUuid
    • setStemUuid

      public void setStemUuid(String stemUuid1)
      stemUuid search by stem uuid (must match exactly), cannot use other
      Parameters:
      stemUuid1 - the stemUuid to set
    • getQueryTerm

      public String getQueryTerm()
      queryTerm if searching by query, this is a term that will be matched to name, extension, etc
      Returns:
      the queryTerm
    • setQueryTerm

      public void setQueryTerm(String queryTerm1)
      queryTerm if searching by query, this is a term that will be matched to name, extension, etc
      Parameters:
      queryTerm1 - the queryTerm to set
    • getStemAttributeName

      public String getStemAttributeName()
      if querying, this is the attribute name, or null or search all attributes
      Returns:
      the attributeName
    • setStemAttributeName

      public void setStemAttributeName(String attributeName1)
      if querying, this is the attribute name, or null or search all attributes
      Parameters:
      attributeName1 - the attributeName to set
    • getStemQueryFilter0

      public WsStemQueryFilter getStemQueryFilter0()
      if 'and' or 'or' this is the first stem, and if complement, this is the stem to complement
      Returns:
      the stemQueryFilter0
    • setStemQueryFilter0

      public void setStemQueryFilter0(WsStemQueryFilter theQueryFilter0)
      if 'and' or 'or' this is the first stem, and if complement, this is the stem to complement
      Parameters:
      theQueryFilter0 - the stemQueryFilter0 to set
    • getStemQueryFilter1

      public WsStemQueryFilter getStemQueryFilter1()
      if 'and' or 'or', this is the second stem
      Returns:
      the stemQueryFilter1
    • setStemQueryFilter1

      public void setStemQueryFilter1(WsStemQueryFilter theQueryFilter1)
      if 'and' or 'or', this is the second stem
      Parameters:
      theQueryFilter1 - the stemQueryFilter1 to set
    • toString

      public String toString()
      Overrides:
      toString in class Object
      See Also:
    • getStemAttributeValue

      public String getStemAttributeValue()
      stemAttributeValue if searching by query, this is a term that will be matched to
      Returns:
      the stemAttributeValue
    • setStemAttributeValue

      public void setStemAttributeValue(String stemAttributeValue1)
      stemAttributeValue if searching by query, this is a term that will be matched to
      Parameters:
      stemAttributeValue1 - the stemAttributeValue to set
    • getAscending

      public String getAscending()
      true or null for ascending, false for descending. If you pass true or false, must pass a sort string
      Returns:
      the ascending
    • getPageNumber

      public String getPageNumber()
      page number 1 indexed if paging
      Returns:
      the pageNumber
    • getPageSize

      public String getPageSize()
      page size if paging
      Returns:
      the pageSize
    • getSortString

      public String getSortString()
      must be an hql query field, e.g. can sort on name, displayName, extension, displayExtension
      Returns:
      the sortString
    • setAscending

      public void setAscending(String ascending1)
      true or null for ascending, false for descending. If you pass true or false, must pass a sort string
      Parameters:
      ascending1 - the ascending to set
    • setPageNumber

      public void setPageNumber(String pageNumber1)
      page number 1 indexed if paging
      Parameters:
      pageNumber1 - the pageNumber to set
    • setPageSize

      public void setPageSize(String pageSize1)
      page size if paging
      Parameters:
      pageSize1 - the pageSize to set
    • setSortString

      public void setSortString(String sortString1)
      must be an hql query field, e.g. can sort on name, displayName, extension, displayExtension
      Parameters:
      sortString1 - the sortString to set