Copyright (c) 2019 Stephane Bastian This program and the accompanying materials are made available under the 2 terms of the Eclipse Public License 2.0 which is available at http://www.eclipse.org/legal/epl-2.0. SPDX-License-Identifier: EPL-2.0 3 Contributors: 4 Stephane Bastian - initial API and implementation
/******************************************************************************** * Copyright (c) 2019 Stephane Bastian * * This program and the accompanying materials are made available under the 2 * terms of the Eclipse Public License 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0. * * SPDX-License-Identifier: EPL-2.0 3 * * Contributors: 4 * Stephane Bastian - initial API and implementation ********************************************************************************/
package io.vertx.ext.auth.authorization.impl; import java.util.Objects; import io.vertx.core.json.JsonObject; import io.vertx.ext.auth.authorization.RoleBasedAuthorization; public class RoleBasedAuthorizationConverter { private final static String FIELD_TYPE = "type"; private final static String TYPE_ROLE_BASED_AUTHORIZATION = "role"; private final static String FIELD_ROLE = "role"; private final static String FIELD_RESOURCE = "resource"; public static JsonObject encode(RoleBasedAuthorization value) throws IllegalArgumentException { Objects.requireNonNull(value); JsonObject result = new JsonObject(); result.put(FIELD_TYPE, TYPE_ROLE_BASED_AUTHORIZATION); result.put(FIELD_ROLE, value.getRole()); if (value.getResource() != null) { result.put(FIELD_RESOURCE, value.getResource()); } return result; } public static RoleBasedAuthorization decode(JsonObject json) throws IllegalArgumentException { Objects.requireNonNull(json); if (TYPE_ROLE_BASED_AUTHORIZATION.equals(json.getString(FIELD_TYPE))) { RoleBasedAuthorization result = RoleBasedAuthorization.create(json.getString(FIELD_ROLE)); if (json.getString(FIELD_RESOURCE) != null) { result.setResource(json.getString(FIELD_RESOURCE)); } return result; } return null; } }