Package org.sonatype.nexus.extdirect.model

Examples of org.sonatype.nexus.extdirect.model.Base64String


      implements JsonDeserializer<Base64String>
  {
    public Base64String deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context)
        throws JsonParseException
    {
      return new Base64String(decode(json));
    }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.extdirect.model.Base64String

Copyright © 2018 www.massapicom. 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.