index int64 | repo_id string | file_path string | content string |
|---|---|---|---|
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/AppJWTSigner.java | package bluecrystal.service.jwt;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.NoSuchProviderException;
import java.security.PrivateKey;
import java.security.Signature;
import java.s... |
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/Claim.java | package bluecrystal.service.jwt;
import java.util.HashMap;
//https://tools.ietf.org/html/rfc7519
//4.1. Registered Claim Names . . . . . . . . . . . . . . . . . 9
//4.1.1. "iss" (Issuer) Claim . . . . . . . . . . . . . . . . 9
//4.1.2. "sub" (Subject) Claim . . . . . . . . . . . . . . . . 9
//4.1.3. "aud... |
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/Credential.java | package bluecrystal.service.jwt;
public interface Credential {
public AppAlgorithm getAlgorithn();
}
|
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/CredentialJHmac.java | package bluecrystal.service.jwt;
public class CredentialJHmac implements Credential {
private byte[] secret;
public CredentialJHmac() {
super();
// TODO Auto-generated constructor stub
}
public CredentialJHmac(byte[] secret) {
super();
this.secret = secret;
}
public byte[] getSecret() {
return secre... |
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/CredentialPKey.java | package bluecrystal.service.jwt;
import java.security.PrivateKey;
import java.security.PublicKey;
import bluecrystal.bcdeps.helper.PkiOps;
public class CredentialPKey implements Credential {
private PrivateKey privateKey;
private PublicKey publicKey;
public CredentialPKey(PrivateKey privateKey, PublicKey p... |
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/JwtService.java | package bluecrystal.service.jwt;
import java.io.IOException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.SignatureException;
import java.util.HashMap;
import java.util.Map;
import com.auth0.jwt.JWTVerifier;
import com.auth0.jwt.JWTVerifyException;
pub... |
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/Signer.java | package bluecrystal.service.jwt;
import java.util.HashMap;
import com.auth0.jwt.JWTSigner;
public class Signer {
// private JWTSigner signer;
//
// public Signer(Credential credential) {
// super();
// if(credential instanceof CredentialJHmac){
// CredentialJHmac tmpCred = (CredentialJHmac) credential;
// this... |
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/Verifier.java | package bluecrystal.service.jwt;
import java.util.Map;
import com.auth0.jwt.JWTVerifier;
import com.auth0.jwt.JWTVerifyException;
public class Verifier {
private JWTVerifier verifier;
// public Verifier(Credential credential) {
// super();
// if(credential instanceof CredentialJHmac){
// CredentialJHmac tmpCre... |
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/loader/CacheManager.java | package bluecrystal.service.loader;
import java.security.cert.X509CRL;
import java.util.Date;
import org.bouncycastle.cert.ocsp.OCSPResp;
public interface CacheManager {
Object getInCache(String url, Date date);
// boolean checkInCache(String url, Date date);
void addToCache(String url, X509CRL crl);
void add... |
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/loader/ExternalLoaderHttp.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/loader/ExternalLoaderHttpNio.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/loader/FSRepoLoader.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/loader/FSZipRepoLoader.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/loader/HttpLoader.java | package bluecrystal.service.loader;
import java.io.IOException;
import java.net.MalformedURLException;
public interface HttpLoader {
public byte[] get(String url) throws MalformedURLException, IOException;
public byte[] post(String url, String contentType, byte[] body) throws MalformedURLException, IOException;
} |
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/loader/LCRLoader.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/loader/LCRLoaderImpl.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/loader/MapCacheManager.java | package bluecrystal.service.loader;
import java.security.cert.X509CRL;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import org.bouncycastle.cert.ocsp.OCSPResp;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import bluecrystal.service.exception.OCSPQueryException;
import bluecrysta... |
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/loader/Messages.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/loader/SignaturePolicyLoader.java | package bluecrystal.service.loader;
public interface SignaturePolicyLoader {
byte[] loadFromUrl(String url) throws 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/loader/SignaturePolicyLoaderImpl.java | package bluecrystal.service.loader;
import java.util.HashMap;
import java.util.Map;
import bluecrystal.service.util.PrefsFactory;
public class SignaturePolicyLoaderImpl implements SignaturePolicyLoader {
Map<String, byte[]> policies;
public SignaturePolicyLoaderImpl() {
super();
policies = new HashMap<String,... |
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/loader/package-info.java | /**
*
*/
/**
* @author sergio
*
*/
package bluecrystal.service.loader; |
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/service/ADRBService_10.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/service/ADRBService_21.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/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.deps.service/1.16.0/bluecrystal/service | java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/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.deps.service/1.16.0/bluecrystal/service | java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service/service/CmsWithChainService.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/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.deps.service/1.16.0/bluecrystal/service | java-sources/al/bluecryst/bluecrystal.deps.service/1.16.0/bluecrystal/service/service/EnvelopeService.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/service/ServiceFactory.java | package bluecrystal.service.service;
public class ServiceFactory {
private static ServiceFacade serviceFacade;
public static ServiceFacade getServiceFacade() {
if(serviceFacade == null){
serviceFacade = new ServiceFacade();
}
return serviceFacade;
}
}
|
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/service/Validator.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/service/ValidatorSrv.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/service/package-info.java | /**
*
*/
/**
* @author sergio
*
*/
package bluecrystal.service.service; |
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/util/LogManager.java | package bluecrystal.service.util;
import java.io.PrintWriter;
import java.io.StringWriter;
public class LogManager {
public static String exceptionToString(Throwable e){
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
e.printStackTrace(pw);
return sw.toString(); // stack trace as ... |
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/util/PrefsFactory.java | package bluecrystal.service.util;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import bluecrystal.service.helper.UtilsRepo;
import bluecrystal.service.interfaces.RepoLoader;
import bluecrystal.service.loader.CacheManager;
import bluecrystal.service.loader.FSRepoLoader;
import bluecrystal.service.loader.Ht... |
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/validator/CrlValidator.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/validator/OcspValidator.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/validator/OcspValidatorImpl.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/validator/StatusValidator.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/validator/package-info.java | /**
*
*/
/**
* @author sergio
*
*/
package bluecrystal.service.validator; |
0 | java-sources/am/gaut/android/toolbarbutton/toolbarbutton/0.1.0/am/gaut/android | java-sources/am/gaut/android/toolbarbutton/toolbarbutton/0.1.0/am/gaut/android/toolbarbutton/ToolbarButton.java | package am.gaut.android.toolbarbutton;
import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.content.Context;
import android.graphics.Rect;
import android.os.Build;
import android.support.annotation.Nullable;
import android.support.design.widget.AppBarLayout;
import androi... |
0 | java-sources/am/gaut/android/toolbarbutton/toolbarbutton/0.1.0/am/gaut/android/toolbarbutton | java-sources/am/gaut/android/toolbarbutton/toolbarbutton/0.1.0/am/gaut/android/toolbarbutton/helpers/CollapsingToolbarHelper.java | package am.gaut.android.toolbarbutton.helpers;
import android.graphics.Matrix;
import android.graphics.Rect;
import android.graphics.RectF;
import android.support.v4.view.ViewCompat;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewParent;
/**
* Need to duplicate code here because fol... |
0 | java-sources/am/ik/access-logger/access-logger/0.3.2/am/ik | java-sources/am/ik/access-logger/access-logger/0.3.2/am/ik/accesslogger/AccessLogger.java | package am.ik.accesslogger;
import java.net.URI;
import java.time.Duration;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Objects;
import java.util.function.BiConsumer;
import java.util.function.BiFunction;
import java.util.function.Predicate;
import java.util.stream.Collectors... |
0 | java-sources/am/ik/access-logger/access-logger/0.3.2/am/ik | java-sources/am/ik/access-logger/access-logger/0.3.2/am/ik/accesslogger/package-info.java | @NonNullApi
package am.ik.accesslogger;
import org.springframework.lang.NonNullApi; |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/AwsApaRequester.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/AwsApaRequesterImpl.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/WebServiceInvoker.java | package am.ik.aws.apa;
import javax.xml.ws.WebServiceException;
interface WebServiceInvoker<T> {
T invoke() throws WebServiceException;
}
|
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/handler/AwsHandlerResolver.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/AWSECommerceService.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/AWSECommerceServicePortType.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/Accessories.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/Arguments.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/Bin.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/BrowseNode.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/BrowseNodeLookup.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/BrowseNodeLookupRequest.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/BrowseNodeLookupResponse.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/BrowseNodes.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/Cart.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartAdd.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartAddRequest.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartAddResponse.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartClear.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartClearRequest.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartClearResponse.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartCreate.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartCreateRequest.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartCreateResponse.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartGet.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartGetRequest.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartGetResponse.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartItem.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartItems.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartModify.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartModifyRequest.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CartModifyResponse.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/Collections.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CorrectedQuery.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/CustomerReviews.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/DecimalWithUnits.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/EditorialReview.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/EditorialReviews.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/Errors.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/HTTPHeaders.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/Image.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/ImageSet.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/Item.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/ItemAttributes.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/ItemLink.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/ItemLinks.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/ItemLookup.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/ItemLookupRequest.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/ItemLookupResponse.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/ItemSearch.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/ItemSearchRequest.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/ItemSearchResponse.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/Items.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/LoyaltyPoints.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/Merchant.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/NewReleases.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
0 | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa | java-sources/am/ik/aws/aws-apa/0.9.5/am/ik/aws/apa/jaxws/NonNegativeIntegerWithUnits.java | /*
* Copyright (C) 2011 Toshiaki Maki <makingx@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 b... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.