This file contains hidden or 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
sudo amazon-linux-extras install java-openjdk18 | |
javac --version | |
sudo yum install git | |
git clone https://gitlab.com/kmehdiza/library/-/tree/mongodb-impl?ref_type=heads | |
sudo yum update -y | |
sudo wget https://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo | |
sudo yum install -y apache-maven | |
mvn --version | |
cd library/ | |
cd books-ms/ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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 com.artiwise.newswise.supernova.model.DTO; | |
import lombok.AllArgsConstructor; | |
import lombok.Getter; | |
import lombok.NoArgsConstructor; | |
import lombok.Setter; | |
import javax.persistence.*; | |
import java.io.Serializable; |
This file contains hidden or 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 com.artiwise.newswise.supernova.hadron; | |
import com.artiwise.newswise.supernova.model.DTO.ConditionDto; | |
import com.artiwise.newswise.supernova.model.DTO.RuleObject; | |
import com.artiwise.newswise.supernova.model.DTO.proxy.RuleProxy; | |
import com.artiwise.newswise.supernova.model.enums.ConditionTypeEnum; | |
import com.artiwise.newswise.supernova.model.enums.Operator; | |
import com.artiwise.newswise.supernova.service.PayloadTrieCacheService; | |
import com.artiwise.newswise.supernova.service.RuleService; | |
import lombok.Getter; |
This file contains hidden or 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 com.artiwise.newswise.supernova.hadron; | |
import com.artiwise.newswise.supernova.client.AnaliticClient; | |
import com.artiwise.newswise.supernova.model.DTO.analytics.DocumentDto; | |
import com.artiwise.newswise.supernova.model.DTO.proxy.RuleProxy; | |
import com.artiwise.newswise.supernova.model.DTO.proxy.TemplateProxy; | |
import com.artiwise.newswise.supernova.model.DTO.proxy.TopicProxy; | |
import com.artiwise.newswise.supernova.model.enums.Operator; | |
import com.artiwise.newswise.supernova.model.stack.Document; |
This file contains hidden or 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
var app = require('./app'); | |
var port = CONFIG.port; | |
var server = app.listen(port, function() { | |
console.log('Express server listening on port ' + port); | |
}); |
This file contains hidden or 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
<AktivasyonFormKaydet xmlns="https://irismobil.bizimdomain.com.tr/"> | |
<pPersonelId>int</pPersonelId> | |
<pSessionId>int</pSessionId> | |
<pSessionGUID>string</pSessionGUID> | |
<pSozlesmeTarih> | |
<Gun>int</Gun> | |
<Ay>int</Ay> | |
<Yil>int</Yil> | |
<DDMMYYYY>string</DDMMYYYY> | |
</pSozlesmeTarih> |
This file contains hidden or 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 com.unlu.co | |
import java.util.concurrent.ConcurrentHashMap; | |
import com.google.gson.Gson; | |
import org.json.JSONObject; | |
public class CacheManager { |
This file contains hidden or 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 com.yusuf.iris.utils; | |
import android.content.Context; | |
import java.util.List; | |
import java.util.concurrent.ConcurrentHashMap; | |
import com.yusuf.iris.helpers.Helper; | |
import com.yusuf.iris.zitem.Session; |