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

org.apache.activemq.artemis.core.persistence.config.PersistedRole Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.activemq.artemis.core.persistence.config;

import java.util.ArrayList;
import java.util.List;

import org.apache.activemq.artemis.api.core.ActiveMQBuffer;
import org.apache.activemq.artemis.core.journal.EncodingSupport;
import org.apache.activemq.artemis.utils.BufferHelper;
import org.apache.activemq.artemis.utils.DataConstants;

public class PersistedRole implements EncodingSupport {

   private long storeId;

   private String username;

   private List roles;

   public PersistedRole() {
   }

   public PersistedRole(String username, List roles) {
      this.username = username;
      this.roles = roles;
   }

   public void setStoreId(long id) {
      this.storeId = id;
   }

   public long getStoreId() {
      return storeId;
   }

   public String getUsername() {
      return username;
   }

   public List getRoles() {
      return roles;
   }

   @Override
   public int getEncodeSize() {
      int size = 0;
      size += BufferHelper.sizeOfString(username);
      size += DataConstants.SIZE_INT;
      for (String role : roles) {
         size += BufferHelper.sizeOfString(role);
      }
      return size;
   }

   @Override
   public void encode(ActiveMQBuffer buffer) {
      buffer.writeString(username);
      buffer.writeInt(roles.size());
      for (String user : roles) {
         buffer.writeString(user);
      }
   }

   @Override
   public void decode(ActiveMQBuffer buffer) {
      username = buffer.readString();
      roles = new ArrayList<>();
      int size = buffer.readInt();
      for (int i = 0; i < size; i++) {
         roles.add(buffer.readString());
      }
   }

   /* (non-Javadoc)
    * @see java.lang.Object#toString()
    */
   @Override
   public String toString() {
      StringBuilder result = new StringBuilder();
      result.append("PersistedRole [storeId=").append(storeId);
      result.append(", username=").append(username);
      result.append(", roles [");
      for (int i = 0; i < roles.size(); i++) {
         result.append(roles.get(i));
         if (i < roles.size() - 1) {
            result.append(", ");
         }
      }
      result.append("]]");

      return result.toString();
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy