Examples of values()


Examples of com.ebay.soap.eBLBaseComponents.StoreItemListLayoutCodeType.values()

                    ebayResp.put("storeHomePage", returnedStoreType.getHomePage().toString());

                    StoreItemListLayoutCodeType storeItemListLayoutCodeType = returnedStoreType.getItemListLayout();
                    ebayResp.put("storeItemLayoutSelected", storeItemListLayoutCodeType.value());
                    StoreItemListLayoutCodeType[] storeItemListLayoutCodeTypeList = storeItemListLayoutCodeType.values();
                    if (storeItemListLayoutCodeTypeList != null) {
                        List<Map<String,Object>> storeItemListLayoutCodeList  = FastList.newInstance();
                        int i = 0;
                        while (i < storeItemListLayoutCodeTypeList.length) {
                            Map<String,Object> storeItemListLayoutCodeMap = FastMap.newInstance();
View Full Code Here

Examples of com.ebay.soap.eBLBaseComponents.StoreItemListSortOrderCodeType.values()

                        }
                        ebayResp.put("storeItemLayoutList", storeItemListLayoutCodeList);
                    }
                    StoreItemListSortOrderCodeType storeItemListSortOrderCodeType = returnedStoreType.getItemListSortOrder();
                    ebayResp.put("storeItemSortOrderSelected", storeItemListSortOrderCodeType.value());
                    StoreItemListSortOrderCodeType[] storeItemListSortOrderCodeTypeList = storeItemListSortOrderCodeType.values();
                    if (storeItemListSortOrderCodeTypeList != null) {
                        List<Map<String,Object>> storeItemSortOrderCodeList  = FastList.newInstance();
                        int i = 0;
                        while (i < storeItemListSortOrderCodeTypeList.length) {
                            Map<String,Object> storeItemSortOrderCodeMap = FastMap.newInstance();
View Full Code Here

Examples of com.eclipsesource.json.JsonArray.values()

        time = getLong(json, "time");
        master = getBoolean(json, "master");
        clusterName = getString(json, "clusterName");
        instanceNames = new HashSet<String>();
        final JsonArray jsonInstanceNames = getArray(json, "instanceNames");
        for (JsonValue instanceName : jsonInstanceNames.values()) {
            instanceNames.add(instanceName.asString());
        }
        memberList = new ArrayList<String>();
        final JsonArray jsonMemberList = getArray(json, "memberList");
        for (JsonValue member : jsonMemberList.values()) {
View Full Code Here

Examples of com.esri.gpt.agp.client.AgpItems.values()

          sDestId,sRelType,sRelDir);
     
      // TODO: consider when to delete destination related items
     
      if ((srcRelItems != null) && (srcRelItems.size() > 0)) {
        for (AgpItem srcRelItem: srcRelItems.values()) {
         
          AgpItem destRelItem = this.itemHelper.makeDestinationItem(src,srcRelItem);
          boolean bRequiresUpdate = this.itemHelper.requiresUpdate(srcRelItem,dest,destRelItem);
          if (this.forceUpdates || bRequiresUpdate) {
            this.execPublishItem(srcRelItem,destRelItem);
View Full Code Here

Examples of com.esri.gpt.catalog.schema.Schemas.values()

      sb.append("{\"types\": [");
      Schemas schemas = context.getCatalogConfiguration().getConfiguredSchemas();
      if (schemas != null) {
        int n = 0;
        msgBroker = this.getMessageBroker(request,response,context,msgBroker);
        for (Schema schema: schemas.values()) {
          if (schema.getEditable()) {
            GxeDefinition definition = schema.getGxeEditorDefinition();
            if (definition != null) {
              String key = schema.getKey();
              String label = null;
View Full Code Here

Examples of com.esri.gpt.framework.security.principal.Groups.values()

*/
private void removeUserFromGroups(User user)
  throws CredentialPolicyException, IdentityException, NamingException, SQLException {
  try {
    Groups grps = user.getGroups();
    for(Group g : grps.values()){
      removeUserFromGroup(user, g.getDistinguishedName());
    }
 
  } finally {
  }
View Full Code Here

Examples of com.esri.gpt.framework.security.principal.Roles.values()

    // set role/group properties
    try {
      readUserGroups(user);
      RoleSet authRoles = user.getAuthenticationStatus().getAuthenticatedRoles();
      Roles cfgRoles = getApplicationConfiguration().getIdentityConfiguration().getConfiguredRoles();
      for (Role role: cfgRoles.values()) {
        authRoles.addAll(role.getFullRoleSet());
      }
    } catch (NamingException e) {
      // will never be thrown
    }
View Full Code Here

Examples of com.esri.gpt.framework.security.principal.UserAttributeMap.values()

    // iterate through the attributes of the supplied user profile
    LdapNameMapping  nameMap  = getConfiguration().getUserProperties().getUserProfileMapping();
    UserAttributeMap localMap = user.getProfile();
    ModificationItem modItem;
    for (UserAttribute localAttr: localMap.values()) {
     
      // determine the local and LDAP keys
      String sLocalKey = localAttr.getKey();
      String sLocalValue = localAttr.getValue();
      String sLdapKey = nameMap.findLdapName(localAttr.getKey());
View Full Code Here

Examples of com.esri.gpt.framework.security.principal.Users.values()

      sbWhere.append(" (A.PROTOCOL IS NOT NULL) ");
      if (!_ignoreUser) {
        Users users = buildSelectablePublishers(getRequestContext());
        if (users.size() > 0) {
          StringBuilder sb = new StringBuilder();
          for (User u : users.values()) {
            if (sb.length() > 0) {
              sb.append(",");
            }
            sb.append(Integer.toString(u.getLocalID()));
          }
View Full Code Here

Examples of com.esri.gpt.server.assertion.index.AsnIndexReferences.values()

    AsnFactory asnFactory = AsnFactory.newFactory(null);
    AsnConfig asnConfig = asnFactory.getConfiguration();
    if (asnConfig.getAreAssertionsEnabled()) {
      AsnIndexReferences asnIndexRefs = asnConfig.getIndexReferences();
      if (asnIndexRefs != null) {
        for (AsnIndexReference asnIndexRef: asnIndexRefs.values()) {
          if ((asnIndexRef != null) && asnIndexRef.getEnabled()) {
            String asnLoc = asnIndexRef.getIndexLocation();
            LOGGER.fine("Optimizing assertion index: "+asnLoc);
            try {
              long asnStartMillis = System.currentTimeMillis();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.