Java List Create createOrgAttributeList()

Here you can find the source of createOrgAttributeList()

Description

create Org Attribute List

License

Apache License

Declaration

public static List<String> createOrgAttributeList() 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.util.ArrayList;

import java.util.List;

public class Main {
    public static List<String> createOrgAttributeList() {
        List<String> attributeList = new ArrayList<>();
        attributeList.add("name");
        attributeList.add("displayName");
        attributeList.add("orgType");
        attributeList.add("locality");
        attributeList.add("parentOrgUnits");
        attributeList.add("governors");
        attributeList.add("resourceInducements");
        attributeList.add("roleInducements");
        return attributeList;
    }//from  w w w  .  ja  v a2s .c  om
}

Related

  1. createNullElementList(int size)
  2. createNullList(int numberOfElements)
  3. CreateObjectList(Object... values)
  4. createOneElementList(T element)
  5. createOrderedQuery(String attributeName, List ids)
  6. createOrGrow(List list, int minCapacity)
  7. createOutputTuple(List> tuples)
  8. createPostBody(final List required)
  9. createPrimaryKeyList(String primaryKeyStr)