repo
stringclasses
1k values
file_url
stringlengths
96
373
file_path
stringlengths
11
294
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
6 values
commit_sha
stringclasses
1k values
retrieved_at
stringdate
2026-01-04 14:45:56
2026-01-04 18:30:23
truncated
bool
2 classes
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/upcaster/ContractEventUpCaster.java
src/main/java/com/craftsman/eventsourcing/es/upcaster/ContractEventUpCaster.java
package com.craftsman.eventsourcing.es.upcaster; import org.axonframework.serialization.upcasting.event.IntermediateEventRepresentation; import org.axonframework.serialization.upcasting.event.SingleEventUpcaster; import java.util.Arrays; import java.util.List; public class ContractEventUpCaster extends SingleEventUp...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/command/DeleteContractCommand.java
src/main/java/com/craftsman/eventsourcing/es/command/DeleteContractCommand.java
package com.craftsman.eventsourcing.es.command; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; @NoArgsConstructor @Getter @Setter public class DeleteContractCommand extends AbstractCommand { public DeleteContractCommand(Long identifier) { super(identifier); } }
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/command/QueryContractCommand.java
src/main/java/com/craftsman/eventsourcing/es/command/QueryContractCommand.java
package com.craftsman.eventsourcing.es.command; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import javax.validation.constraints.NotBlank; import javax.validation.constraints.NotNull; import java.time.Instant; @Getter @Setter @AllArgsConstructor @NoAr...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/command/CreateContractCommand.java
src/main/java/com/craftsman/eventsourcing/es/command/CreateContractCommand.java
package com.craftsman.eventsourcing.es.command; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; @Getter @Setter @NoArgsConstructor public class CreateContractCommand extends UpdateContractCommand { public CreateContractCommand(Long identifier, String name, String partyA, String party...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/command/AbstractCommand.java
src/main/java/com/craftsman/eventsourcing/es/command/AbstractCommand.java
package com.craftsman.eventsourcing.es.command; import lombok.*; import org.axonframework.modelling.command.TargetAggregateIdentifier; @Getter @Setter @AllArgsConstructor @NoArgsConstructor public class AbstractCommand { @TargetAggregateIdentifier private Long identifier; }
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/command/UpdateContractCommand.java
src/main/java/com/craftsman/eventsourcing/es/command/UpdateContractCommand.java
package com.craftsman.eventsourcing.es.command; import com.craftsman.eventsourcing.es.ContractInterface; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; @Getter @Setter @NoArgsConstructor public class UpdateContractCommand extends AbstractCommand implements ContractInterface { privat...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/common/MetaDataUser.java
src/main/java/com/craftsman/eventsourcing/es/continuance/common/MetaDataUser.java
package com.craftsman.eventsourcing.es.continuance.common; import lombok.Builder; import lombok.Getter; import lombok.Setter; @Getter @Setter @Builder public class MetaDataUser implements MetaDataUserInterface { private String name; private Long userId; private Long customerId; }
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/common/MetaDataUserInterface.java
src/main/java/com/craftsman/eventsourcing/es/continuance/common/MetaDataUserInterface.java
package com.craftsman.eventsourcing.es.continuance.common; public interface MetaDataUserInterface { /** * 用户名 */ String getName(); /** * 用户 id */ Long getUserId(); /** * 租户 id */ Long getCustomerId(); }
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/common/DomainEvent.java
src/main/java/com/craftsman/eventsourcing/es/continuance/common/DomainEvent.java
package com.craftsman.eventsourcing.es.continuance.common; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import lombok.extern.slf4j.Slf4j; import java.time.Instant; @Getter @Setter @Slf4j @NoArgsConstructor @AllArgsConstructor public class DomainEvent<...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/health/DataRepairController.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/health/DataRepairController.java
package com.craftsman.eventsourcing.es.continuance.producer.health; import com.craftsman.eventsourcing.service.ContractViewService; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang.StringUtils; import org.springframework.scheduling.annotation.Async; import org.springfr...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/health/ScheduleService.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/health/ScheduleService.java
package com.craftsman.eventsourcing.es.continuance.producer.health; import com.craftsman.eventsourcing.es.continuance.producer.jpa.CustomDomainEventEntry; import com.craftsman.eventsourcing.es.continuance.producer.jpa.CustomDomainEventEntryRepository; import com.craftsman.eventsourcing.stream.ContractPublisher; import...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/health/EventHealthContributor.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/health/EventHealthContributor.java
package com.craftsman.eventsourcing.es.continuance.producer.health; import com.craftsman.eventsourcing.es.continuance.producer.jpa.CustomDomainEventEntryRepository; import lombok.AllArgsConstructor; import org.springframework.boot.actuate.info.Info; import org.springframework.boot.actuate.info.InfoContributor; import ...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/jpa/CustomDomainEventEntryListener.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/jpa/CustomDomainEventEntryListener.java
package com.craftsman.eventsourcing.es.continuance.producer.jpa; import com.craftsman.eventsourcing.stream.ContractPublisher; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import org.springframework.transaction.support....
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/jpa/CustomEventSourcingRepository.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/jpa/CustomEventSourcingRepository.java
package com.craftsman.eventsourcing.es.continuance.producer.jpa; import lombok.extern.slf4j.Slf4j; import org.axonframework.common.caching.Cache; import org.axonframework.common.lock.Lock; import org.axonframework.common.lock.LockFactory; import org.axonframework.common.lock.PessimisticLockFactory; import org.axonfram...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/jpa/CustomDomainEventEntryRepository.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/jpa/CustomDomainEventEntryRepository.java
package com.craftsman.eventsourcing.es.continuance.producer.jpa; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; @Repository public interface CustomDomainEventE...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/jpa/CustomDomainEventEntry.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/jpa/CustomDomainEventEntry.java
package com.craftsman.eventsourcing.es.continuance.producer.jpa; import lombok.Getter; import lombok.Setter; import org.axonframework.eventhandling.AbstractSequencedDomainEventEntry; import org.axonframework.eventhandling.DomainEventMessage; import org.axonframework.serialization.Serializer; import javax.persistence....
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/jpa/AggregateSequenceNumberInterface.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/jpa/AggregateSequenceNumberInterface.java
package com.craftsman.eventsourcing.es.continuance.producer.jpa; public interface AggregateSequenceNumberInterface { String getAggregateIdentifier(); Long getSequenceNumber(); }
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/jpa/CustomJpaEventStorageEngine.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/jpa/CustomJpaEventStorageEngine.java
package com.craftsman.eventsourcing.es.continuance.producer.jpa; import org.axonframework.common.AxonConfigurationException; import org.axonframework.common.jdbc.PersistenceExceptionResolver; import org.axonframework.common.jpa.EntityManagerProvider; import org.axonframework.common.transaction.TransactionManager; impo...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/jpa/CustomEmbeddedEventStore.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/jpa/CustomEmbeddedEventStore.java
package com.craftsman.eventsourcing.es.continuance.producer.jpa; import lombok.extern.slf4j.Slf4j; import org.axonframework.common.AxonConfigurationException; import org.axonframework.common.AxonThreadFactory; import org.axonframework.eventhandling.DomainEventMessage; import org.axonframework.eventhandling.EventMessag...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/uuid/WorkerId.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/uuid/WorkerId.java
package com.craftsman.eventsourcing.es.continuance.producer.uuid; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import javax.persistence.*; @Entity @Getter @Setter @NoArgsConstructor public class WorkerId { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long i...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/uuid/WorkerIdRepository.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/uuid/WorkerIdRepository.java
package com.craftsman.eventsourcing.es.continuance.producer.uuid; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; @Repository public interface WorkerIdRepository extends JpaRepository<WorkerId, Long> { WorkerId findByServiceKey(String serviceKey); }
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/uuid/SnowFlake.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/uuid/SnowFlake.java
package com.craftsman.eventsourcing.es.continuance.producer.uuid; import lombok.extern.slf4j.Slf4j; import java.util.Random; @Slf4j public class SnowFlake { private static class TimeBackwardsException extends RuntimeException { TimeBackwardsException(String message) { super(message); ...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/uuid/UIDGenerator.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/uuid/UIDGenerator.java
package com.craftsman.eventsourcing.es.continuance.producer.uuid; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import javax.annotation.PostConstruct; @Component public class UIDGenerator { private final WorkerIdService workerIdService; priva...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/uuid/WorkerIdService.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/uuid/WorkerIdService.java
package com.craftsman.eventsourcing.es.continuance.producer.uuid; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang.StringUtils; import org.springframework.cloud.client.serviceregistry.Registration; import org.springframework.stereotype.Service; import java.net.Inet4Ad...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/config/CommandInterceptor.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/config/CommandInterceptor.java
package com.craftsman.eventsourcing.es.continuance.producer.config; import com.craftsman.eventsourcing.es.command.AbstractCommand; import com.craftsman.eventsourcing.es.command.CreateContractCommand; import com.craftsman.eventsourcing.es.continuance.common.MetaDataUser; import com.craftsman.eventsourcing.es.continuanc...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/config/AxonContinueConfiguration.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/config/AxonContinueConfiguration.java
package com.craftsman.eventsourcing.es.continuance.producer.config; import com.craftsman.eventsourcing.es.ContractAggregate; import com.craftsman.eventsourcing.es.ContractCommandGateway; import com.craftsman.eventsourcing.es.continuance.producer.jpa.CustomEmbeddedEventStore; import com.craftsman.eventsourcing.es.cont...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/producer/config/CommandRetryScheduler.java
src/main/java/com/craftsman/eventsourcing/es/continuance/producer/config/CommandRetryScheduler.java
package com.craftsman.eventsourcing.es.continuance.producer.config; import lombok.extern.slf4j.Slf4j; import org.axonframework.commandhandling.CommandMessage; import org.axonframework.commandhandling.gateway.RetryScheduler; import java.text.MessageFormat; import java.util.List; @Slf4j public class CommandRetrySchedu...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/consumer/StreamEventHandler.java
src/main/java/com/craftsman/eventsourcing/es/continuance/consumer/StreamEventHandler.java
package com.craftsman.eventsourcing.es.continuance.consumer; import java.lang.annotation.*; @Target( {ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface StreamEventHandler { String[] payloadTypes() default {""}; String[] types(); }
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/consumer/StreamEventSequenceException.java
src/main/java/com/craftsman/eventsourcing/es/continuance/consumer/StreamEventSequenceException.java
package com.craftsman.eventsourcing.es.continuance.consumer; class StreamEventSequenceException extends RuntimeException { StreamEventSequenceException(String message) { super(message); } }
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/consumer/StreamDomainEventDispatcher.java
src/main/java/com/craftsman/eventsourcing/es/continuance/consumer/StreamDomainEventDispatcher.java
package com.craftsman.eventsourcing.es.continuance.consumer; import com.craftsman.eventsourcing.es.continuance.common.DomainEvent; import com.fasterxml.jackson.databind.ObjectMapper; import lombok.AllArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang.StringUtils; import org.springframewo...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/consumer/DomainAggregateSequenceRepository.java
src/main/java/com/craftsman/eventsourcing/es/continuance/consumer/DomainAggregateSequenceRepository.java
package com.craftsman.eventsourcing.es.continuance.consumer; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; @Repository public interface DomainAggregateSequenceRepository extends JpaRepository<DomainAggregateSequence, Long> { /** * 根据 aggregat...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/consumer/DomainAggregateSequence.java
src/main/java/com/craftsman/eventsourcing/es/continuance/consumer/DomainAggregateSequence.java
package com.craftsman.eventsourcing.es.continuance.consumer; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import javax.persistence.*; @Entity @Table(indexes = @Index(columnList = "aggregateIdentifier,type", unique = true)) @Getter @Setter @NoArgsConstructor public class DomainAggregat...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/continuance/consumer/StreamHandlerException.java
src/main/java/com/craftsman/eventsourcing/es/continuance/consumer/StreamHandlerException.java
package com.craftsman.eventsourcing.es.continuance.consumer; class StreamHandlerException extends RuntimeException { StreamHandlerException(String message) { super(message); } StreamHandlerException(String message, Throwable cause) { super(message, cause); } }
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/event/ContractCreatedEvent.java
src/main/java/com/craftsman/eventsourcing/es/event/ContractCreatedEvent.java
package com.craftsman.eventsourcing.es.event; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; @Getter @Setter @NoArgsConstructor public class ContractCreatedEvent extends ContractUpdatedEvent { public ContractCreatedEvent(Long identifier, String name, String partyA, String partyB, St...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/event/AbstractEvent.java
src/main/java/com/craftsman/eventsourcing/es/event/AbstractEvent.java
package com.craftsman.eventsourcing.es.event; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import org.axonframework.modelling.command.TargetAggregateIdentifier; import org.axonframework.serialization.Revision; @Getter @Setter @AllArgsConstructor @NoArg...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/event/ContractDeletedEvent.java
src/main/java/com/craftsman/eventsourcing/es/event/ContractDeletedEvent.java
package com.craftsman.eventsourcing.es.event; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; @Getter @Setter @NoArgsConstructor public class ContractDeletedEvent extends AbstractEvent { public ContractDeletedEvent(Long identifier) { super(identifier); } }
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/event/ContractUpdatedEvent.java
src/main/java/com/craftsman/eventsourcing/es/event/ContractUpdatedEvent.java
package com.craftsman.eventsourcing.es.event; import com.craftsman.eventsourcing.es.ContractInterface; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; @Getter @Setter @NoArgsConstructor public class ContractUpdatedEvent extends AbstractEvent implements ContractInterface { private Str...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
soooban/AxonDemo
https://github.com/soooban/AxonDemo/blob/3a690f55a76515a00670e9a4cb10d991570a1d1e/src/main/java/com/craftsman/eventsourcing/es/handler/ContractQueryHandler.java
src/main/java/com/craftsman/eventsourcing/es/handler/ContractQueryHandler.java
package com.craftsman.eventsourcing.es.handler; import com.craftsman.eventsourcing.es.ContractAggregate; import com.craftsman.eventsourcing.es.command.QueryContractCommand; import com.craftsman.eventsourcing.es.continuance.producer.jpa.CustomEventSourcingRepository; import lombok.AllArgsConstructor; import lombok.exte...
java
MIT
3a690f55a76515a00670e9a4cb10d991570a1d1e
2026-01-05T02:36:44.819083Z
false
Dec12th/JrebelBrainsLicenseServerforJava
https://github.com/Dec12th/JrebelBrainsLicenseServerforJava/blob/9aba3e0a0d55e96b056ca6c747f7fde51596ef97/src/main/java/com/vvvtimes/util/Hex.java
src/main/java/com/vvvtimes/util/Hex.java
package com.vvvtimes.util; public class Hex { public static String bytesToHexString(byte[] src){ StringBuilder stringBuilder = new StringBuilder(""); if (src == null || src.length <= 0) { return null; } for (int i = 0; i < src.length; i++) { int v = src[i] & 0xF...
java
Apache-2.0
9aba3e0a0d55e96b056ca6c747f7fde51596ef97
2026-01-05T02:36:46.141267Z
false
Dec12th/JrebelBrainsLicenseServerforJava
https://github.com/Dec12th/JrebelBrainsLicenseServerforJava/blob/9aba3e0a0d55e96b056ca6c747f7fde51596ef97/src/main/java/com/vvvtimes/util/Base64.java
src/main/java/com/vvvtimes/util/Base64.java
package com.vvvtimes.util; public class Base64 { /** * 编码 * * @param bstr * @return String */ public static String encode(byte[] bstr) { return org.apache.commons.codec.binary.Base64.encodeBase64String(bstr); } /** * 解码 * * @param str * @return string */ public static byte[] decode(Strin...
java
Apache-2.0
9aba3e0a0d55e96b056ca6c747f7fde51596ef97
2026-01-05T02:36:46.141267Z
false
Dec12th/JrebelBrainsLicenseServerforJava
https://github.com/Dec12th/JrebelBrainsLicenseServerforJava/blob/9aba3e0a0d55e96b056ca6c747f7fde51596ef97/src/main/java/com/vvvtimes/util/rsasign.java
src/main/java/com/vvvtimes/util/rsasign.java
package com.vvvtimes.util; import org.bouncycastle.asn1.ASN1InputStream; import org.bouncycastle.asn1.ASN1Primitive; import org.bouncycastle.asn1.pkcs.RSAPrivateKeyStructure; import java.security.KeyFactory; import java.security.PrivateKey; import java.security.spec.PKCS8EncodedKeySpec; import java.security.spec.RSAP...
java
Apache-2.0
9aba3e0a0d55e96b056ca6c747f7fde51596ef97
2026-01-05T02:36:46.141267Z
false
Dec12th/JrebelBrainsLicenseServerforJava
https://github.com/Dec12th/JrebelBrainsLicenseServerforJava/blob/9aba3e0a0d55e96b056ca6c747f7fde51596ef97/src/main/java/com/vvvtimes/JrebelUtil/ByteUtil.java
src/main/java/com/vvvtimes/JrebelUtil/ByteUtil.java
package com.vvvtimes.JrebelUtil; import org.apache.commons.codec.binary.Base64; import java.nio.charset.Charset; import java.util.Random; public class ByteUtil { private static final Random a; public static String a(final byte[] binaryData) { if (binaryData == null) { return null; ...
java
Apache-2.0
9aba3e0a0d55e96b056ca6c747f7fde51596ef97
2026-01-05T02:36:46.141267Z
false
Dec12th/JrebelBrainsLicenseServerforJava
https://github.com/Dec12th/JrebelBrainsLicenseServerforJava/blob/9aba3e0a0d55e96b056ca6c747f7fde51596ef97/src/main/java/com/vvvtimes/JrebelUtil/LicenseServer2ToJRebelPrivateKey.java
src/main/java/com/vvvtimes/JrebelUtil/LicenseServer2ToJRebelPrivateKey.java
package com.vvvtimes.JrebelUtil; import org.bouncycastle.jce.provider.BouncyCastleProvider; import java.security.GeneralSecurityException; import java.security.KeyFactory; import java.security.PrivateKey; import java.security.Signature; import java.security.spec.PKCS8EncodedKeySpec; public class LicenseServer2ToJReb...
java
Apache-2.0
9aba3e0a0d55e96b056ca6c747f7fde51596ef97
2026-01-05T02:36:46.141267Z
false
Dec12th/JrebelBrainsLicenseServerforJava
https://github.com/Dec12th/JrebelBrainsLicenseServerforJava/blob/9aba3e0a0d55e96b056ca6c747f7fde51596ef97/src/main/java/com/vvvtimes/JrebelUtil/JrebelSign.java
src/main/java/com/vvvtimes/JrebelUtil/JrebelSign.java
package com.vvvtimes.JrebelUtil; import org.apache.commons.lang3.StringUtils; public class JrebelSign { private String signature; public void toLeaseCreateJson(String clientRandomness, String guid, boolean offline, String validFrom, String validUntil) { //String serverRandomness = ByteUtil.a(ByteUtil...
java
Apache-2.0
9aba3e0a0d55e96b056ca6c747f7fde51596ef97
2026-01-05T02:36:46.141267Z
false
Dec12th/JrebelBrainsLicenseServerforJava
https://github.com/Dec12th/JrebelBrainsLicenseServerforJava/blob/9aba3e0a0d55e96b056ca6c747f7fde51596ef97/src/main/java/com/vvvtimes/server/MainServer.java
src/main/java/com/vvvtimes/server/MainServer.java
package com.vvvtimes.server; import com.vvvtimes.JrebelUtil.JrebelSign; import com.vvvtimes.util.rsasign; import net.sf.json.JSONObject; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.*; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax...
java
Apache-2.0
9aba3e0a0d55e96b056ca6c747f7fde51596ef97
2026-01-05T02:36:46.141267Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-core/src/main/java/org/springframework/cloud/etcd/EtcdAutoConfiguration.java
spring-cloud-etcd-core/src/main/java/org/springframework/cloud/etcd/EtcdAutoConfiguration.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-core/src/main/java/org/springframework/cloud/etcd/EtcdEndpoint.java
spring-cloud-etcd-core/src/main/java/org/springframework/cloud/etcd/EtcdEndpoint.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-core/src/main/java/org/springframework/cloud/etcd/EtcdHealthIndicator.java
spring-cloud-etcd-core/src/main/java/org/springframework/cloud/etcd/EtcdHealthIndicator.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-core/src/main/java/org/springframework/cloud/etcd/EtcdProperties.java
spring-cloud-etcd-core/src/main/java/org/springframework/cloud/etcd/EtcdProperties.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-config/src/main/java/org/springframework/cloud/etcd/config/EtcdConfigBootstrapConfiguration.java
spring-cloud-etcd-config/src/main/java/org/springframework/cloud/etcd/config/EtcdConfigBootstrapConfiguration.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-config/src/main/java/org/springframework/cloud/etcd/config/EtcdPropertySourceLocator.java
spring-cloud-etcd-config/src/main/java/org/springframework/cloud/etcd/config/EtcdPropertySourceLocator.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-config/src/main/java/org/springframework/cloud/etcd/config/EtcdConstants.java
spring-cloud-etcd-config/src/main/java/org/springframework/cloud/etcd/config/EtcdConstants.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-config/src/main/java/org/springframework/cloud/etcd/config/EtcdPropertySource.java
spring-cloud-etcd-config/src/main/java/org/springframework/cloud/etcd/config/EtcdPropertySource.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-config/src/main/java/org/springframework/cloud/etcd/config/EtcdConfigProperties.java
spring-cloud-etcd-config/src/main/java/org/springframework/cloud/etcd/config/EtcdConfigProperties.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-sample/src/main/java/org/springframework/cloud/etcd/sample/SampleEtcdApplication.java
spring-cloud-etcd-sample/src/main/java/org/springframework/cloud/etcd/sample/SampleEtcdApplication.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-discovery/src/main/java/org/springframework/cloud/etcd/discovery/EtcdLifecycle.java
spring-cloud-etcd-discovery/src/main/java/org/springframework/cloud/etcd/discovery/EtcdLifecycle.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-discovery/src/main/java/org/springframework/cloud/etcd/discovery/EtcdDiscoveryClientConfiguration.java
spring-cloud-etcd-discovery/src/main/java/org/springframework/cloud/etcd/discovery/EtcdDiscoveryClientConfiguration.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-discovery/src/main/java/org/springframework/cloud/etcd/discovery/RibbonEtcdAutoConfiguration.java
spring-cloud-etcd-discovery/src/main/java/org/springframework/cloud/etcd/discovery/RibbonEtcdAutoConfiguration.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-discovery/src/main/java/org/springframework/cloud/etcd/discovery/EtcdDiscoveryClient.java
spring-cloud-etcd-discovery/src/main/java/org/springframework/cloud/etcd/discovery/EtcdDiscoveryClient.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-discovery/src/main/java/org/springframework/cloud/etcd/discovery/EtcdServer.java
spring-cloud-etcd-discovery/src/main/java/org/springframework/cloud/etcd/discovery/EtcdServer.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-discovery/src/main/java/org/springframework/cloud/etcd/discovery/EtcdServerList.java
spring-cloud-etcd-discovery/src/main/java/org/springframework/cloud/etcd/discovery/EtcdServerList.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-discovery/src/main/java/org/springframework/cloud/etcd/discovery/EtcdRibbonClientConfiguration.java
spring-cloud-etcd-discovery/src/main/java/org/springframework/cloud/etcd/discovery/EtcdRibbonClientConfiguration.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
spring-attic/spring-cloud-etcd
https://github.com/spring-attic/spring-cloud-etcd/blob/07c5fcd6f6c294a382866b6f64f3f482e4c813e9/spring-cloud-etcd-discovery/src/main/java/org/springframework/cloud/etcd/discovery/EtcdDiscoveryProperties.java
spring-cloud-etcd-discovery/src/main/java/org/springframework/cloud/etcd/discovery/EtcdDiscoveryProperties.java
/* * Copyright 2013-2015 the original author or authors. * * Licensed 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 ap...
java
Apache-2.0
07c5fcd6f6c294a382866b6f64f3f482e4c813e9
2026-01-05T02:36:35.510969Z
false
silentsignal/burp-requests
https://github.com/silentsignal/burp-requests/blob/a0b031f742574eb3c595db0ab7891ef5ccce70d9/src/mjson/Json.java
src/mjson/Json.java
/* * Copyright (C) 2011 Miami-Dade County. * * Licensed 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 agr...
java
MIT
a0b031f742574eb3c595db0ab7891ef5ccce70d9
2026-01-05T02:36:48.456422Z
true
silentsignal/burp-requests
https://github.com/silentsignal/burp-requests/blob/a0b031f742574eb3c595db0ab7891ef5ccce70d9/src/burp/BurpExtender.java
src/burp/BurpExtender.java
package burp; import java.util.*; import java.awt.datatransfer.*; import java.awt.event.*; import java.awt.Toolkit; import java.io.UnsupportedEncodingException; import javax.swing.JMenuItem; import mjson.Json; public class BurpExtender implements IBurpExtender, IContextMenuFactory, ClipboardOwner { private IExtensi...
java
MIT
a0b031f742574eb3c595db0ab7891ef5ccce70d9
2026-01-05T02:36:48.456422Z
false
googlearchive/drive-appdatapreferences-android
https://github.com/googlearchive/drive-appdatapreferences-android/blob/954f1feb73ec0f9bfe4c5778c2efc86ec38676b6/src/com/google/drive/appdatapreferences/AppdataPreferencesProvider.java
src/com/google/drive/appdatapreferences/AppdataPreferencesProvider.java
/** * Copyright 2013 Google Inc. All Rights Reserved. * * Licensed 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 appli...
java
Apache-2.0
954f1feb73ec0f9bfe4c5778c2efc86ec38676b6
2026-01-05T02:36:48.332875Z
false
googlearchive/drive-appdatapreferences-android
https://github.com/googlearchive/drive-appdatapreferences-android/blob/954f1feb73ec0f9bfe4c5778c2efc86ec38676b6/src/com/google/drive/appdatapreferences/AppdataPreferencesSyncer.java
src/com/google/drive/appdatapreferences/AppdataPreferencesSyncer.java
/** * Copyright 2013 Google Inc. All Rights Reserved. * * Licensed 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 appli...
java
Apache-2.0
954f1feb73ec0f9bfe4c5778c2efc86ec38676b6
2026-01-05T02:36:48.332875Z
false
googlearchive/drive-appdatapreferences-android
https://github.com/googlearchive/drive-appdatapreferences-android/blob/954f1feb73ec0f9bfe4c5778c2efc86ec38676b6/src/com/google/drive/appdatapreferences/AppdataPreferencesSyncManager.java
src/com/google/drive/appdatapreferences/AppdataPreferencesSyncManager.java
/** * Copyright 2013 Google Inc. All Rights Reserved. * * Licensed 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 appli...
java
Apache-2.0
954f1feb73ec0f9bfe4c5778c2efc86ec38676b6
2026-01-05T02:36:48.332875Z
false
googlearchive/drive-appdatapreferences-android
https://github.com/googlearchive/drive-appdatapreferences-android/blob/954f1feb73ec0f9bfe4c5778c2efc86ec38676b6/src/com/google/drive/appdatapreferences/AppdataSyncerAdapter.java
src/com/google/drive/appdatapreferences/AppdataSyncerAdapter.java
/** * Copyright 2013 Google Inc. All Rights Reserved. * * Licensed 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 appli...
java
Apache-2.0
954f1feb73ec0f9bfe4c5778c2efc86ec38676b6
2026-01-05T02:36:48.332875Z
false
googlearchive/drive-appdatapreferences-android
https://github.com/googlearchive/drive-appdatapreferences-android/blob/954f1feb73ec0f9bfe4c5778c2efc86ec38676b6/src/com/google/drive/appdatapreferences/Utils.java
src/com/google/drive/appdatapreferences/Utils.java
/** * Copyright 2013 Google Inc. All Rights Reserved. * * Licensed 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 appli...
java
Apache-2.0
954f1feb73ec0f9bfe4c5778c2efc86ec38676b6
2026-01-05T02:36:48.332875Z
false
googlearchive/drive-appdatapreferences-android
https://github.com/googlearchive/drive-appdatapreferences-android/blob/954f1feb73ec0f9bfe4c5778c2efc86ec38676b6/src/com/google/drive/appdatapreferences/AppdataSyncerService.java
src/com/google/drive/appdatapreferences/AppdataSyncerService.java
/** * Copyright 2013 Google Inc. All Rights Reserved. * * Licensed 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 appli...
java
Apache-2.0
954f1feb73ec0f9bfe4c5778c2efc86ec38676b6
2026-01-05T02:36:48.332875Z
false
googlearchive/drive-appdatapreferences-android
https://github.com/googlearchive/drive-appdatapreferences-android/blob/954f1feb73ec0f9bfe4c5778c2efc86ec38676b6/src/com/google/drive/appdatapreferences/tasks/DriveTask.java
src/com/google/drive/appdatapreferences/tasks/DriveTask.java
/** * Copyright 2013 Google Inc. All Rights Reserved. * * Licensed 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 appli...
java
Apache-2.0
954f1feb73ec0f9bfe4c5778c2efc86ec38676b6
2026-01-05T02:36:48.332875Z
false
googlearchive/drive-appdatapreferences-android
https://github.com/googlearchive/drive-appdatapreferences-android/blob/954f1feb73ec0f9bfe4c5778c2efc86ec38676b6/src/com/google/drive/appdatapreferences/tasks/UpdatePreferencesDriveTask.java
src/com/google/drive/appdatapreferences/tasks/UpdatePreferencesDriveTask.java
/** * Copyright 2013 Google Inc. All Rights Reserved. * * Licensed 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 appli...
java
Apache-2.0
954f1feb73ec0f9bfe4c5778c2efc86ec38676b6
2026-01-05T02:36:48.332875Z
false
googlearchive/drive-appdatapreferences-android
https://github.com/googlearchive/drive-appdatapreferences-android/blob/954f1feb73ec0f9bfe4c5778c2efc86ec38676b6/src/com/google/drive/appdatapreferences/tasks/GetOrCreatePreferencesDriveTask.java
src/com/google/drive/appdatapreferences/tasks/GetOrCreatePreferencesDriveTask.java
/** * Copyright 2013 Google Inc. All Rights Reserved. * * Licensed 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 appli...
java
Apache-2.0
954f1feb73ec0f9bfe4c5778c2efc86ec38676b6
2026-01-05T02:36:48.332875Z
false
bhargavms/DotLoader
https://github.com/bhargavms/DotLoader/blob/0598ea7cbe5513a177a06d04fd0097bba2047825/library/src/test/java/com/bhargavms/dotloader/ExampleUnitTest.java
library/src/test/java/com/bhargavms/dotloader/ExampleUnitTest.java
package com.bhargavms.dotloader; import org.junit.Test; import static org.junit.Assert.*; /** * To work on unit tests, switch the Test Artifact in the Build Variants view. */ public class ExampleUnitTest { @Test public void addition_isCorrect() throws Exception { assertEquals(4, 2 + 2); } }
java
Apache-2.0
0598ea7cbe5513a177a06d04fd0097bba2047825
2026-01-05T02:36:51.131523Z
false
bhargavms/DotLoader
https://github.com/bhargavms/DotLoader/blob/0598ea7cbe5513a177a06d04fd0097bba2047825/library/src/main/java/com/bhargavms/dotloader/Dot.java
library/src/main/java/com/bhargavms/dotloader/Dot.java
package com.bhargavms.dotloader; import android.animation.ValueAnimator; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; /** * Created by Bhargav on 7/20/2016. */ class Dot { private Paint mPaint; int mCurrentColorIndex; private int mDotRadius; private I...
java
Apache-2.0
0598ea7cbe5513a177a06d04fd0097bba2047825
2026-01-05T02:36:51.131523Z
false
bhargavms/DotLoader
https://github.com/bhargavms/DotLoader/blob/0598ea7cbe5513a177a06d04fd0097bba2047825/library/src/main/java/com/bhargavms/dotloader/DotLoader.java
library/src/main/java/com/bhargavms/dotloader/DotLoader.java
package com.bhargavms.dotloader; import android.animation.ArgbEvaluator; import android.animation.ValueAnimator; import android.annotation.TargetApi; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Canvas; import android.graphics.Rect; import android.util.AttributeSet; im...
java
Apache-2.0
0598ea7cbe5513a177a06d04fd0097bba2047825
2026-01-05T02:36:51.131523Z
false
bhargavms/DotLoader
https://github.com/bhargavms/DotLoader/blob/0598ea7cbe5513a177a06d04fd0097bba2047825/library/src/main/java/com/bhargavms/dotloader/CubicBezierInterpolator.java
library/src/main/java/com/bhargavms/dotloader/CubicBezierInterpolator.java
package com.bhargavms.dotloader; import android.graphics.PointF; import android.view.animation.Interpolator; /** * Derived from: https://github.com/rdallasgray/bez */ public class CubicBezierInterpolator implements Interpolator { protected PointF start; protected PointF end; protected PointF a = new Po...
java
Apache-2.0
0598ea7cbe5513a177a06d04fd0097bba2047825
2026-01-05T02:36:51.131523Z
false
bhargavms/DotLoader
https://github.com/bhargavms/DotLoader/blob/0598ea7cbe5513a177a06d04fd0097bba2047825/library/src/main/java/com/bhargavms/dotloader/AnimationRepeater.java
library/src/main/java/com/bhargavms/dotloader/AnimationRepeater.java
package com.bhargavms.dotloader; import android.animation.Animator; /** * Created by bhargav on 5/27/17. */ class AnimationRepeater implements Animator.AnimatorListener { private boolean alternate = true; private Dot mDot; private Integer[] mColors; AnimationRepeater(Dot dot, Integer[] colors) { ...
java
Apache-2.0
0598ea7cbe5513a177a06d04fd0097bba2047825
2026-01-05T02:36:51.131523Z
false
bhargavms/DotLoader
https://github.com/bhargavms/DotLoader/blob/0598ea7cbe5513a177a06d04fd0097bba2047825/library/src/androidTest/java/com/bhargavms/dotloader/ApplicationTest.java
library/src/androidTest/java/com/bhargavms/dotloader/ApplicationTest.java
package com.bhargavms.dotloader; import android.app.Application; import android.test.ApplicationTestCase; /** * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> */ public class ApplicationTest extends ApplicationTestCase<Application> { public ApplicationTest() { ...
java
Apache-2.0
0598ea7cbe5513a177a06d04fd0097bba2047825
2026-01-05T02:36:51.131523Z
false
bhargavms/DotLoader
https://github.com/bhargavms/DotLoader/blob/0598ea7cbe5513a177a06d04fd0097bba2047825/sample/src/test/java/com/bhargavms/dotloader_sample/ExampleUnitTest.java
sample/src/test/java/com/bhargavms/dotloader_sample/ExampleUnitTest.java
package com.bhargavms.dotloader_sample; import org.junit.Test; import static org.junit.Assert.*; /** * To work on unit tests, switch the Test Artifact in the Build Variants view. */ public class ExampleUnitTest { @Test public void addition_isCorrect() throws Exception { assertEquals(4, 2 + 2); ...
java
Apache-2.0
0598ea7cbe5513a177a06d04fd0097bba2047825
2026-01-05T02:36:51.131523Z
false
bhargavms/DotLoader
https://github.com/bhargavms/DotLoader/blob/0598ea7cbe5513a177a06d04fd0097bba2047825/sample/src/main/java/com/bhargavms/dotloader_sample/MainActivity.java
sample/src/main/java/com/bhargavms/dotloader_sample/MainActivity.java
package com.bhargavms.dotloader_sample; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import com.bhargavms.dotloader.DotLoader; public class MainActivity extends AppCompatActivity { DotLoader dotLo...
java
Apache-2.0
0598ea7cbe5513a177a06d04fd0097bba2047825
2026-01-05T02:36:51.131523Z
false
bhargavms/DotLoader
https://github.com/bhargavms/DotLoader/blob/0598ea7cbe5513a177a06d04fd0097bba2047825/sample/src/main/java/com/bhargavms/dotloader_sample/DotLoaderApp.java
sample/src/main/java/com/bhargavms/dotloader_sample/DotLoaderApp.java
package com.bhargavms.dotloader_sample; import android.app.Application; import com.squareup.leakcanary.LeakCanary; /** * Created by bhargav on 5/29/17. */ public class DotLoaderApp extends Application { @Override public void onCreate() { super.onCreate(); if (LeakCanary.isInAnalyzerProces...
java
Apache-2.0
0598ea7cbe5513a177a06d04fd0097bba2047825
2026-01-05T02:36:51.131523Z
false
bhargavms/DotLoader
https://github.com/bhargavms/DotLoader/blob/0598ea7cbe5513a177a06d04fd0097bba2047825/sample/src/androidTest/java/com/bhargavms/dotloader_sample/ApplicationTest.java
sample/src/androidTest/java/com/bhargavms/dotloader_sample/ApplicationTest.java
package com.bhargavms.dotloader_sample; import android.app.Application; import android.test.ApplicationTestCase; /** * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> */ public class ApplicationTest extends ApplicationTestCase<Application> { public ApplicationTest() { ...
java
Apache-2.0
0598ea7cbe5513a177a06d04fd0097bba2047825
2026-01-05T02:36:51.131523Z
false
sumio/uiautomator-unicode-input-helper
https://github.com/sumio/uiautomator-unicode-input-helper/blob/791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6/UiAutomatorInputSample/src/jp/jun_nama/test/utf7ime/helper/Utf7ImeHelper.java
UiAutomatorInputSample/src/jp/jun_nama/test/utf7ime/helper/Utf7ImeHelper.java
/* * Copyright 2013 TOYAMA Sumio <jun.nama@gmail.com> * * Licensed 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 app...
java
Apache-2.0
791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6
2026-01-05T02:36:52.606464Z
false
sumio/uiautomator-unicode-input-helper
https://github.com/sumio/uiautomator-unicode-input-helper/blob/791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6/UiAutomatorInputSample/src/jp/jun_nama/test/utf7ime/sample/UiAutomatorInputTest.java
UiAutomatorInputSample/src/jp/jun_nama/test/utf7ime/sample/UiAutomatorInputTest.java
/* * Copyright 2013 TOYAMA Sumio <jun.nama@gmail.com> * * Licensed 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 app...
java
Apache-2.0
791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6
2026-01-05T02:36:52.606464Z
false
sumio/uiautomator-unicode-input-helper
https://github.com/sumio/uiautomator-unicode-input-helper/blob/791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6/UiAutomatorInputSample/src/com/beetstra/jutf7/UTF7Charset.java
UiAutomatorInputSample/src/com/beetstra/jutf7/UTF7Charset.java
/* ==================================================================== * Copyright (c) 2006 J.T. Beetstra * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, includ...
java
Apache-2.0
791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6
2026-01-05T02:36:52.606464Z
false
sumio/uiautomator-unicode-input-helper
https://github.com/sumio/uiautomator-unicode-input-helper/blob/791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6/UiAutomatorInputSample/src/com/beetstra/jutf7/ModifiedUTF7Charset.java
UiAutomatorInputSample/src/com/beetstra/jutf7/ModifiedUTF7Charset.java
/* ==================================================================== * Copyright (c) 2006 J.T. Beetstra * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, includ...
java
Apache-2.0
791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6
2026-01-05T02:36:52.606464Z
false
sumio/uiautomator-unicode-input-helper
https://github.com/sumio/uiautomator-unicode-input-helper/blob/791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6/UiAutomatorInputSample/src/com/beetstra/jutf7/CharsetProvider.java
UiAutomatorInputSample/src/com/beetstra/jutf7/CharsetProvider.java
/* ==================================================================== * Copyright (c) 2006 J.T. Beetstra * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, includ...
java
Apache-2.0
791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6
2026-01-05T02:36:52.606464Z
false
sumio/uiautomator-unicode-input-helper
https://github.com/sumio/uiautomator-unicode-input-helper/blob/791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6/UiAutomatorInputSample/src/com/beetstra/jutf7/UTF7StyleCharsetEncoder.java
UiAutomatorInputSample/src/com/beetstra/jutf7/UTF7StyleCharsetEncoder.java
/* ==================================================================== * Copyright (c) 2006 J.T. Beetstra * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, includ...
java
Apache-2.0
791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6
2026-01-05T02:36:52.606464Z
false
sumio/uiautomator-unicode-input-helper
https://github.com/sumio/uiautomator-unicode-input-helper/blob/791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6/UiAutomatorInputSample/src/com/beetstra/jutf7/Base64Util.java
UiAutomatorInputSample/src/com/beetstra/jutf7/Base64Util.java
/* ==================================================================== * Copyright (c) 2006 J.T. Beetstra * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, includ...
java
Apache-2.0
791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6
2026-01-05T02:36:52.606464Z
false
sumio/uiautomator-unicode-input-helper
https://github.com/sumio/uiautomator-unicode-input-helper/blob/791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6/UiAutomatorInputSample/src/com/beetstra/jutf7/UTF7StyleCharsetDecoder.java
UiAutomatorInputSample/src/com/beetstra/jutf7/UTF7StyleCharsetDecoder.java
/* ==================================================================== * Copyright (c) 2006 J.T. Beetstra * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, includ...
java
Apache-2.0
791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6
2026-01-05T02:36:52.606464Z
false
sumio/uiautomator-unicode-input-helper
https://github.com/sumio/uiautomator-unicode-input-helper/blob/791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6/UiAutomatorInputSample/src/com/beetstra/jutf7/UTF7StyleCharset.java
UiAutomatorInputSample/src/com/beetstra/jutf7/UTF7StyleCharset.java
/* ==================================================================== * Copyright (c) 2006 J.T. Beetstra * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, includ...
java
Apache-2.0
791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6
2026-01-05T02:36:52.606464Z
false
sumio/uiautomator-unicode-input-helper
https://github.com/sumio/uiautomator-unicode-input-helper/blob/791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6/Utf7Ime/src/jp/jun_nama/test/utf7ime/Utf7ImeService.java
Utf7Ime/src/jp/jun_nama/test/utf7ime/Utf7ImeService.java
/* * Copyright 2013 TOYAMA Sumio <jun.nama@gmail.com> * * Licensed 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 app...
java
Apache-2.0
791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6
2026-01-05T02:36:52.606464Z
false
sumio/uiautomator-unicode-input-helper
https://github.com/sumio/uiautomator-unicode-input-helper/blob/791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6/helper-library/src/jp/jun_nama/test/utf7ime/helper/Utf7ImeHelper.java
helper-library/src/jp/jun_nama/test/utf7ime/helper/Utf7ImeHelper.java
/* * Copyright 2013 TOYAMA Sumio <jun.nama@gmail.com> * * Licensed 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 app...
java
Apache-2.0
791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6
2026-01-05T02:36:52.606464Z
false
sumio/uiautomator-unicode-input-helper
https://github.com/sumio/uiautomator-unicode-input-helper/blob/791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6/helper-library/src/com/beetstra/jutf7/UTF7Charset.java
helper-library/src/com/beetstra/jutf7/UTF7Charset.java
/* ==================================================================== * Copyright (c) 2006 J.T. Beetstra * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, includ...
java
Apache-2.0
791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6
2026-01-05T02:36:52.606464Z
false
sumio/uiautomator-unicode-input-helper
https://github.com/sumio/uiautomator-unicode-input-helper/blob/791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6/helper-library/src/com/beetstra/jutf7/ModifiedUTF7Charset.java
helper-library/src/com/beetstra/jutf7/ModifiedUTF7Charset.java
/* ==================================================================== * Copyright (c) 2006 J.T. Beetstra * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, includ...
java
Apache-2.0
791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6
2026-01-05T02:36:52.606464Z
false
sumio/uiautomator-unicode-input-helper
https://github.com/sumio/uiautomator-unicode-input-helper/blob/791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6/helper-library/src/com/beetstra/jutf7/CharsetProvider.java
helper-library/src/com/beetstra/jutf7/CharsetProvider.java
/* ==================================================================== * Copyright (c) 2006 J.T. Beetstra * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, includ...
java
Apache-2.0
791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6
2026-01-05T02:36:52.606464Z
false
sumio/uiautomator-unicode-input-helper
https://github.com/sumio/uiautomator-unicode-input-helper/blob/791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6/helper-library/src/com/beetstra/jutf7/UTF7StyleCharsetEncoder.java
helper-library/src/com/beetstra/jutf7/UTF7StyleCharsetEncoder.java
/* ==================================================================== * Copyright (c) 2006 J.T. Beetstra * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, includ...
java
Apache-2.0
791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6
2026-01-05T02:36:52.606464Z
false
sumio/uiautomator-unicode-input-helper
https://github.com/sumio/uiautomator-unicode-input-helper/blob/791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6/helper-library/src/com/beetstra/jutf7/Base64Util.java
helper-library/src/com/beetstra/jutf7/Base64Util.java
/* ==================================================================== * Copyright (c) 2006 J.T. Beetstra * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, includ...
java
Apache-2.0
791abc5a1a0b6dc25c39f011cf3b1f1fc3ec3df6
2026-01-05T02:36:52.606464Z
false