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

org.voovan.docker.message.auth.AuthResult Maven / Gradle / Ivy

Go to download

By encapsulating the Docker API enables developers to use Java can quickly developed the control and operation of the Docker application, using streaming operation, simple and clear.

The newest version!
package org.voovan.docker.message.auth;

import org.voovan.tools.json.JSONPath;

import java.text.ParseException;

/**
 * 类文字命名
 *
 * @author helyho
 *         

* JDocker Framework. * WebSite: https://github.com/helyho/JDocker * Licence: Apache v2 License */ public class AuthResult { private String Status; private String identityToken; public String getStatus() { return Status; } public void setStatus(String status) { Status = status; } public String getIdentityToken() { return identityToken; } public void setIdentityToken(String identityToken) { this.identityToken = identityToken; } public static AuthResult load(String jsonStr) throws ParseException, ReflectiveOperationException { JSONPath jsonPath = new JSONPath(jsonStr); return jsonPath.value("/",AuthResult.class); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy