This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
module.exports = { | |
twoWay: true, | |
bind: function() { | |
var self = this; | |
var IDattr = self.el.getAttribute('id') | |
console.log("TinyMCEDirective.bind IDattr="+IDattr) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<textarea :id="textareaId">{{{content}}}</textarea> | |
</template> | |
<script> | |
export default { | |
props: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"http-nio-8080-exec-1@8409" daemon prio=5 tid=0x1f nid=NA runnable | |
java.lang.Thread.State: RUNNABLE | |
at org.doogie.liquido.rest.LiquidoAuditorAware.getCurrentAuditor(LiquidoAuditorAware.java:49) | |
at org.doogie.liquido.rest.LiquidoAuditorAware.getCurrentAuditor(LiquidoAuditorAware.java:21) | |
at sun.reflect.GeneratedMethodAccessor81.invoke(Unknown Source:-1) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) | |
at java.lang.reflect.Method.invoke(Method.java:498) | |
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:333) | |
at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:207) | |
at com.sun.proxy.$Proxy132.getCurrentAuditor(Unknown Source:-1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.doogie; | |
import edu.biu.scapi.midLayer.asymmetricCrypto.encryption.DJKeyGenParameterSpec; | |
import edu.biu.scapi.midLayer.asymmetricCrypto.encryption.DamgardJurikEnc; | |
import edu.biu.scapi.midLayer.asymmetricCrypto.encryption.ScDamgardJurikEnc; | |
import edu.biu.scapi.midLayer.asymmetricCrypto.keys.ScDamgardJurikPublicKey; | |
import edu.biu.scapi.midLayer.ciphertext.AsymmetricCiphertext; | |
import edu.biu.scapi.midLayer.plaintext.BigIntegerPlainText; | |
import java.math.BigInteger; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
info: | |
description: >- | |
Order Service 2.0 - Next version of On Demand Mobility Microservice with local cache of data for | |
trips and orders. (Invoice and Payment is not in scope here.) | |
This service has very simple endpoints. For each domain object there are two REST resources: | |
<ol> | |
<li>.../my -> query for all objects of the currently logged in user.</li> | |
<li>.../search -> query for all itmes that match the given filter parameters with sorting and paging |