index
int64
repo_id
string
file_path
string
content
string
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/TestManager.java
package al.aldi.sprova4j; /** * Manages the whole lifecycle of the test object. * @author Aldi Alimuçaj */ public class TestManager { public boolean start(){ return true; } public boolean fail(){ return true; } public boolean succeed(){ return true; } }
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/exceptions/CycleException.java
package al.aldi.sprova4j.exceptions; public class CycleException extends Exception { public CycleException(String s) { super(s); } }
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/exceptions/ExecutionException.java
package al.aldi.sprova4j.exceptions; public class ExecutionException extends Exception { public ExecutionException(String s) { super(s); } }
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/exceptions/SprovaClientException.java
package al.aldi.sprova4j.exceptions; public class SprovaClientException extends Exception { public SprovaClientException(String s) { super(s); } }
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/exceptions/TestCaseException.java
package al.aldi.sprova4j.exceptions; public class TestCaseException extends Exception { public TestCaseException(String s) { super(s); } }
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/exceptions/TestSetException.java
package al.aldi.sprova4j.exceptions; public class TestSetException extends Exception { public TestSetException(String s) { super(s); } }
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/Artifact.java
package al.aldi.sprova4j.models; public class Artifact { String _id; String title; String description; String fileName; String artifactType; String executionId; String cycleId; }
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/Cycle.java
package al.aldi.sprova4j.models; import al.aldi.sprova4j.exceptions.CycleException; import al.aldi.sprova4j.exceptions.TestCaseException; import al.aldi.sprova4j.utils.SprovaObjectFilter; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.google.gson.reflect.TypeToken; import java.lang.reflec...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/Execution.java
package al.aldi.sprova4j.models; import al.aldi.sprova4j.SprovaApiClient; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.google.gson.reflect.TypeToken; import java.lang.reflect.Type; import java.util.ArrayList; import java.util.Date; import java.util.GregorianCalendar; import java.util.Li...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/Project.java
package al.aldi.sprova4j.models; import al.aldi.sprova4j.exceptions.CycleException; import al.aldi.sprova4j.exceptions.TestCaseException; import al.aldi.sprova4j.utils.SprovaObjectFilter; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.google.gson.reflect.TypeToken; import java.lang.reflec...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/SprovaObject.java
package al.aldi.sprova4j.models; import al.aldi.sprova4j.SprovaApiClient; import com.fasterxml.jackson.databind.ObjectMapper; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import java.io.IOException; import java.util.HashMap; import java.util.Map; public abstract class SprovaObject { public s...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/TestCase.java
package al.aldi.sprova4j.models; import al.aldi.sprova4j.SprovaApiClient; import al.aldi.sprova4j.exceptions.TestCaseException; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.google.gson.reflect.TypeToken; import java.lang.reflect.Type; import java.util.ArrayList; import java.util.List; ...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/TestSet.java
package al.aldi.sprova4j.models; import al.aldi.sprova4j.exceptions.TestCaseException; import al.aldi.sprova4j.exceptions.TestSetException; import al.aldi.sprova4j.models.aux.TestSetExecutionResponse; import al.aldi.sprova4j.utils.SprovaObjectFilter; import com.google.gson.Gson; import com.google.gson.GsonBuilder; imp...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/TestSetExecution.java
package al.aldi.sprova4j.models; import al.aldi.sprova4j.exceptions.TestCaseException; import al.aldi.sprova4j.models.enums.TestSetExecutionStatus; import al.aldi.sprova4j.utils.SprovaObjectFilter; import com.google.gson.*; import com.google.gson.reflect.TypeToken; import java.lang.reflect.Type; import java.time.Inst...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/TestStep.java
package al.aldi.sprova4j.models; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.google.gson.reflect.TypeToken; import java.lang.reflect.Type; import java.util.ArrayList; import java.util.List; public class TestStep extends SprovaObject { public String _id; public String action; ...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/User.java
package al.aldi.sprova4j.models; public class User extends SprovaObject { public String username; public String password; public String firstname; public String lastname; public String email; public boolean admin; User toObject(String json) { return gson.fromJson(json, User.class);...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/aux/AuthenticationRequest.java
package al.aldi.sprova4j.models.aux; import al.aldi.sprova4j.models.SprovaObject; public class AuthenticationRequest extends SprovaObject { public String username; public String password; public AuthenticationRequest() { } public AuthenticationRequest(String username, String password) { ...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/aux/AuthenticationResponse.java
package al.aldi.sprova4j.models.aux; import al.aldi.sprova4j.models.SprovaObject; import com.google.gson.Gson; import com.google.gson.GsonBuilder; public class AuthenticationResponse extends SprovaObject { public String message; public String token; public static AuthenticationResponse toObject(String js...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/aux/MongoDbInsertManyResponse.java
package al.aldi.sprova4j.models.aux; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import java.util.HashMap; public class MongoDbInsertManyResponse { public int insertedCount; public Nok result; public HashMap<Integer, String> insertedIds; public static MongoDbInsertManyResponse t...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/aux/MongoDbInsertResponse.java
package al.aldi.sprova4j.models.aux; import com.google.gson.Gson; import com.google.gson.GsonBuilder; public class MongoDbInsertResponse { public int n; public int ok; public String _id; public boolean isSuccessful() { return n == 1 && ok == 1 && _id != null && !_id.isEmpty(); } publ...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/aux/StatusResponse.java
package al.aldi.sprova4j.models.aux; import al.aldi.sprova4j.models.SprovaObject; public class StatusResponse extends SprovaObject { public Boolean success; public String name; public String version; public String serverTime; public static StatusResponse toObject(String json) { return g...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/aux/TestSetExecutionResponse.java
package al.aldi.sprova4j.models.aux; import com.google.gson.Gson; import com.google.gson.GsonBuilder; public class TestSetExecutionResponse extends MongoDbInsertResponse { public MongoDbInsertManyResponse executions; public static TestSetExecutionResponse toObject(String json) { GsonBuilder builder =...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/enums/ExecutionStatus.java
package al.aldi.sprova4j.models.enums; public enum ExecutionStatus { SUCCESSFUL("SUCCESSFUL"), FAILED("FAILED"), WARNING("WARNING"), PENDING("PENDING"), WORKING("WORKING"); private final String text; ExecutionStatus(String value) { this.text = value; } @Override publi...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/enums/ExecutionStepStatus.java
package al.aldi.sprova4j.models.enums; public enum ExecutionStepStatus { SUCCESSFUL("SUCCESSFUL"), FAILED("FAILED"); private final String text; ExecutionStepStatus(String value) { this.text = value; } @Override public String toString() { return text; } public Str...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/models/enums/TestSetExecutionStatus.java
package al.aldi.sprova4j.models.enums; public class TestSetExecutionStatus { public final static String RUNNING = "Running"; public final static String ABANDONED = "Abandoned"; public final static String FINISHED = "Finished"; public final static String PLANNED = "Planned"; }
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/utils/ApiUtils.java
package al.aldi.sprova4j.utils; import okhttp3.*; import java.io.IOException; import static al.aldi.sprova4j.SprovaApiClient.JSON; public class ApiUtils { public static final String API = "/api"; public static final String AUTHENTICATE = "/authenticate"; public static final String STATUS = "/status"; ...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/utils/AuthorizationInterceptor.java
package al.aldi.sprova4j.utils; import javax.validation.constraints.NotNull;; import okhttp3.Interceptor; import okhttp3.Request; import okhttp3.Response; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.IOException; public class AuthorizationInterceptor implements Interceptor { private st...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/utils/LoggingInterceptor.java
package al.aldi.sprova4j.utils; import okhttp3.Interceptor; import okhttp3.Request; import okhttp3.Response; import okio.Buffer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.IOException; public class LoggingInterceptor implements Interceptor { private static final Logger logger = Logge...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/utils/SprovaObjectFilter.java
package al.aldi.sprova4j.utils; import al.aldi.sprova4j.models.SprovaObject; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.node.ObjectNode; import javax.json.Json; imp...
0
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j
java-sources/al/aldi/sprova4j/0.2.1/al/aldi/sprova4j/utils/Utils.java
package al.aldi.sprova4j.utils; public class Utils { }
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/bcdeps
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/bcdeps/helper/DerEncoder.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/domain/OperationStatus.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/api/BlucApi.java
package bluecrystal.service.api; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.math.BigInteger; import java.security.cert.Certificate; import java.security.cert.CertificateException; i...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/api/CertificateResponse.java
package bluecrystal.service.api; import java.util.Map; import java.util.TreeMap; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement public class CertificateResponse { private String subject; private String cn; private String name; private String cpf; private String error; private Map<String, Str...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/api/EnvelopeResponse.java
package bluecrystal.service.api; import java.util.Map; import java.util.TreeMap; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement public class EnvelopeResponse { private String cn; private String policy; private String policyversion; private String policyoid; private String envelope; private St...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/api/HashResponse.java
package bluecrystal.service.api; import java.util.Map; import java.util.TreeMap; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement public class HashResponse { private String hash; private String cn; private String policy; private String policyversion; private String policyoid; private String err...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/api/ValidateResponse.java
package bluecrystal.service.api; import java.util.Map; import java.util.TreeMap; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement public class ValidateResponse { private String certificate; private String status; private String cn; private String policy; private String error; private Map<Strin...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/exception/EmptyCertPathException.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/exception/NotAfterException.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/exception/NotBeforeException.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/exception/UndefStateException.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/helper/UtilsLocal.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/helper/UtilsRepo.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/service/ADRBService_23.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/service/BaseService.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/service/CertificateService.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/service/CryptoService.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/service/CryptoServiceImpl.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/service/ServiceFacade.java
package bluecrystal.service.service; import java.security.NoSuchAlgorithmException; import java.security.cert.X509Certificate; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Map; import org.bouncycastle.util.encoders.Base64; im...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/service/SignVerifyService.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/validator/CrlValidatorImpl.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service
java-sources/al/bluecryst/bluecrystal/2.3.4/bluecrystal/service/validator/StatusValidatorImpl.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.bc_g3/1.16.0/bluecrystal/bcdeps
java-sources/al/bluecryst/bluecrystal.deps.bc_g3/1.16.0/bluecrystal/bcdeps/helper/DerEncoder.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.bc_g3/1.16.0/bluecrystal/bcdeps
java-sources/al/bluecryst/bluecrystal.deps.bc_g3/1.16.0/bluecrystal/bcdeps/helper/PkiOps.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.bc_g3/1.16.0/bluecrystal/bcdeps
java-sources/al/bluecryst/bluecrystal.deps.bc_g3/1.16.0/bluecrystal/bcdeps/helper/package-info.java
/** * */ /** * @author sergio * */ package bluecrystal.bcdeps.helper;
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/AppSignedInfo.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/AppSignedInfoEx.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/CertConstants.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/CiKeyUsage.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/Messages.java
package bluecrystal.domain; import java.util.MissingResourceException; import java.util.ResourceBundle; public class Messages { private static final String BUNDLE_NAME = "bluecrystal.domain.messages"; //$NON-NLS-1$ private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME); priva...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/NameValue.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/OperationStatus.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/SignCompare.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/SignCompare2.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/SignDetails.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/SignPolicy.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/SignPolicyRef.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/StatusConst.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/package-info.java
/** * */ /** * @author sergio * */ package bluecrystal.domain;
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/helper/IttruLogger.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/helper/IttruLoggerFactory.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/helper/IttruLoggerStdOut.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/helper/package-info.java
/** * */ /** * @author sergio * */ package bluecrystal.domain.helper;
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/rest/RequestCertificateParsed.java
package bluecrystal.domain.rest; public class RequestCertificateParsed { public String certb64; public boolean validate; public RequestCertificateParsed() { super(); // TODO Auto-generated constructor stub } public RequestCertificateParsed(String certb64, boolean validate) { super(); this.certb64 = certb6...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/rest/RequestEnvelope.java
package bluecrystal.domain.rest; //String hash_valueb64 = (String) request.getParameter("hash_value"); //String timeValue = (String) request.getParameter("time_value"); //String saValueb64 = (String) request.getParameter("sa_value"); //String signedValueb64 = (String) request.getParameter("signed_value"); //String cer...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/rest/RequestEnvelopeSigner.java
package bluecrystal.domain.rest; public class RequestEnvelopeSigner { private String envelopeSignedB64; public RequestEnvelopeSigner() { super(); // TODO Auto-generated constructor stub } public RequestEnvelopeSigner(String envelopeSigned) { super(); this.envelopeSignedB64 = envelopeSigned; } public String g...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/rest/RequestEnvelopeVerify.java
package bluecrystal.domain.rest; public class RequestEnvelopeVerify { @Override public String toString() { return "RequestEnvelopeVerify [envelope=" + envelope + ", contentHash=" + contentHash + "]"; } private String envelope; private String contentHash; public RequestEnvelopeVerify() { super(); // TODO Au...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/rest/RequestJwtPostSigned.java
package bluecrystal.domain.rest; import java.util.Arrays; public class RequestJwtPostSigned { private String issuer; private String subject; private String audience; private Long expirationTime; private Long notBefore; private Long issuedAt; private String jwtId; private String credential; private int cred...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/rest/RequestJwtPreSigned.java
package bluecrystal.domain.rest; public class RequestJwtPreSigned { private String issuer; private String subject; private String audience; private Long expirationTime; private Long notBefore; private Long issuedAt; private String jwtId; private String credential; private int credentialType; public Requ...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/rest/RequestSignable.java
package bluecrystal.domain.rest; public class RequestSignable { public String certb64; public String alg; public String contentHash; public RequestSignable() { super(); // TODO Auto-generated constructor stub } public RequestSignable(String certb64, String alg, String contentHash) { super(); this.certb64...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/rest/RequestStorage.java
package bluecrystal.domain.rest; public class RequestStorage { String firstName; String lastName; public String getFirstName() { return firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } public String getLastName() { return las...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/rest/ResponseCertificateParsed.java
package bluecrystal.domain.rest; import java.util.Arrays; import bluecrystal.domain.NameValue; public class ResponseCertificateParsed { private NameValue[] certificate; // @DynamoDBAttribute(attributeName="subjectRdn") private NameValue[] subjectRdn; private NameValue[] issuerRdn; private int status; public...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/rest/ResponseEnvelope.java
package bluecrystal.domain.rest; public class ResponseEnvelope { private String signedContent; private int signStatus; private String statusMessage; private String certB64; private String certSubject; public ResponseEnvelope() { super(); // TODO Auto-generated constructor stub } public ResponseEnvelope(St...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/rest/ResponseEnvelopeSigner.java
package bluecrystal.domain.rest; public class ResponseEnvelopeSigner { private String certificateB64; public ResponseEnvelopeSigner() { super(); // TODO Auto-generated constructor stub } public ResponseEnvelopeSigner(String certificateB64) { super(); this.certificateB64 = certificateB64; } public Stri...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/rest/ResponseEnvelopeVerify.java
package bluecrystal.domain.rest; public class ResponseEnvelopeVerify { @Override public String toString() { return "ResponseEnvelopeVerify [signStatus=" + signStatus + ",\nstatusMessage=" + statusMessage + ",\ncertB64=" + certB64 + ",\ncertSubject=" + certSubject + "]"; } private int signStatus; private Str...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/rest/ResponseJwtPostSigned.java
package bluecrystal.domain.rest; public class ResponseJwtPostSigned { private String postSign; public ResponseJwtPostSigned() { super(); } public ResponseJwtPostSigned(String postSign) { super(); this.postSign = postSign; } public String getPostSign() { return postSign; } public void setPostSig...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/rest/ResponseJwtPreSigned.java
package bluecrystal.domain.rest; public class ResponseJwtPreSigned { private String preSign; public ResponseJwtPreSigned(String preSign) { super(); this.preSign = preSign; } public ResponseJwtPreSigned() { super(); } public String getPreSign() { return preSign; } @Override public String toString()...
0
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain
java-sources/al/bluecryst/bluecrystal.deps.domain/1.16.0/bluecrystal/domain/rest/ResponseSignable.java
package bluecrystal.domain.rest; public class ResponseSignable { private String timeValue; private String saValue; public ResponseSignable() { super(); // TODO Auto-generated constructor stub } public ResponseSignable(String timeValue, String saValue) { super(); this.timeValue = timeValue; this.saVa...
0
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service/exception/ExpiredSessionException.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service/exception/InvalidSigntureException.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service/exception/LicenseNotFoundExeception.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service/exception/LoginErrorException.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service/exception/OCSPQueryException.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service/exception/RevokedException.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service/exception/UndefStateException.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service/exception/package-info.java
/** * */ /** * @author sergio * */ package bluecrystal.service.exception;
0
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service/helper/package-info.java
/** * */ /** * @author sergio * */ package bluecrystal.service.helper;
0
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service/interfaces/RepoLoader.java
/* Blue Crystal: Document Digital Signature Tool Copyright (C) 2007-2015 Sergio Leal This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, o...
0
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service/interfaces/package-info.java
/** * */ /** * @author sergio * */ package bluecrystal.service.interfaces;
0
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service
java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service/jwt/AppAlgorithm.java
package bluecrystal.service.jwt; import com.auth0.jwt.JWTAlgorithmException; public enum AppAlgorithm { HS256("HmacSHA256"), HS384("HmacSHA384"), HS512("HmacSHA512"), RS256("SHA256withRSA"), RS384( "SHA384withRSA"), RS512("SHA512withRSA"); private AppAlgorithm(final String value) { this.value = value; } ...