├── .gitignore ├── PluginsAndFeatures ├── AddLibrary │ ├── ACSLibrary │ │ ├── com.microsoftopentechnologies.acsfilter.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ ├── com.microsoftopentechnologies.acsfilter.ui │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── contexts.xml │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ ├── resources │ │ │ │ └── web.xml │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── microsoftopentechnologies │ │ │ │ └── acsfilter │ │ │ │ └── ui │ │ │ │ ├── activator │ │ │ │ └── Activator.java │ │ │ │ └── classpath │ │ │ │ ├── ACSFilterHandler.java │ │ │ │ ├── ACSFilterUtil.java │ │ │ │ ├── ACSParserXMLUtility.java │ │ │ │ ├── ClasspathContainer.java │ │ │ │ ├── ClasspathContainerPage.java │ │ │ │ ├── ContainerInitializer.java │ │ │ │ ├── Messages.java │ │ │ │ ├── WAACSStartUp.java │ │ │ │ └── messages.properties │ │ └── com.microsoftopentechnologies.acsfilter │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── ACSAuthFilter.jar │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ ├── AppInsights │ │ ├── com.microsoft.applicationinsights.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ └── com.microsoft.applicationinsights.ui │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── contexts.xml │ │ │ ├── icons │ │ │ ├── large │ │ │ │ └── readme.txt │ │ │ └── small │ │ │ │ └── readme.txt │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ ├── resources │ │ │ ├── ApplicationInsights.xml │ │ │ └── web.xml │ │ │ └── src │ │ │ └── com │ │ │ └── microsoft │ │ │ └── applicationinsights │ │ │ ├── preference │ │ │ ├── ApplicationInsightsAddDialog.java │ │ │ ├── ApplicationInsightsDetailsDialog.java │ │ │ ├── ApplicationInsightsNewDialog.java │ │ │ ├── ApplicationInsightsPageTableElement.java │ │ │ ├── ApplicationInsightsPageTableElements.java │ │ │ ├── ApplicationInsightsPreferencePage.java │ │ │ ├── ApplicationInsightsPreferences.java │ │ │ ├── ApplicationInsightsResource.java │ │ │ ├── ApplicationInsightsResourceRegistry.java │ │ │ ├── ApplicationInsightsResourceRegistryEclipse.java │ │ │ ├── ApplicationInsightsResourceWithSameName.java │ │ │ ├── Messages.java │ │ │ └── messages.properties │ │ │ ├── ui │ │ │ ├── activator │ │ │ │ └── Activator.java │ │ │ └── config │ │ │ │ ├── AIConfigCommandHandler.java │ │ │ │ ├── AIProjConfigWizardDialog.java │ │ │ │ ├── AIResourceChangeListener.java │ │ │ │ ├── AIStartup.java │ │ │ │ ├── Messages.java │ │ │ │ └── messages.properties │ │ │ └── util │ │ │ ├── AILibraryHandler.java │ │ │ ├── AILibraryUtil.java │ │ │ ├── AIParserXMLUtility.java │ │ │ └── WAPropertyTester.java │ ├── AzureLibraries │ │ ├── com.microsoftopentechnologies.windowsazure.tools.sdk.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ ├── com.microsoftopentechnologies.windowsazure.tools.sdk │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── azure-core-0.9.0.jar │ │ │ ├── build.properties │ │ │ ├── dependencies │ │ │ │ ├── ApplicationInsights.xml │ │ │ │ ├── ThirdPartyNotices.txt │ │ │ │ ├── annotation-detector-3.0.4.jar │ │ │ │ ├── applicationinsights-core-1.0.2.jar │ │ │ │ ├── applicationinsights-management-0.9.8.jar │ │ │ │ ├── applicationinsights-web-1.0.2.jar │ │ │ │ ├── azure-activedirectory-interactive-auth-library-for-java.jar │ │ │ │ ├── azure-media-0.9.0.jar │ │ │ │ ├── azure-servicebus-0.9.0.jar │ │ │ │ ├── azure-serviceruntime-0.9.0.jar │ │ │ │ ├── azure-storage-4.0.0.jar │ │ │ │ ├── azure-svc-mgmt-0.9.0.jar │ │ │ │ ├── azure-svc-mgmt-compute-0.9.0.jar │ │ │ │ ├── azure-svc-mgmt-media-0.9.0.jar │ │ │ │ ├── azure-svc-mgmt-network-0.9.0.jar │ │ │ │ ├── azure-svc-mgmt-scheduler-0.9.0.jar │ │ │ │ ├── azure-svc-mgmt-sql-0.9.0.jar │ │ │ │ ├── azure-svc-mgmt-storage-0.9.0.jar │ │ │ │ ├── azure-svc-mgmt-websites-0.9.0.jar │ │ │ │ ├── azure-tracing-util-0.9.0.jar │ │ │ │ ├── commons-codec-1.10.jar │ │ │ │ ├── commons-io-2.4.jar │ │ │ │ ├── commons-lang-2.6.jar │ │ │ │ ├── commons-lang3-3.4.jar │ │ │ │ ├── commons-logging-1.1.3.jar │ │ │ │ ├── gson-1.7.2.jar │ │ │ │ ├── guava-18.0.jar │ │ │ │ ├── httpclient-4.3.6.jar │ │ │ │ ├── httpcore-4.3.3.jar │ │ │ │ ├── jackson-annotations-2.6.0.jar │ │ │ │ ├── jackson-core-2.6.0.jar │ │ │ │ ├── jackson-core-asl-1.9.2.jar │ │ │ │ ├── jackson-databind-2.6.0.jar │ │ │ │ ├── jackson-jaxrs-1.9.2.jar │ │ │ │ ├── jackson-mapper-asl-1.9.2.jar │ │ │ │ ├── jackson-xc-1.9.2.jar │ │ │ │ ├── javax.inject-1.jar │ │ │ │ ├── jaxb-impl-2.2.3-1-sources.jar │ │ │ │ ├── jaxb-impl-2.2.3-1.jar │ │ │ │ ├── jersey-client-1.13-sources.jar │ │ │ │ ├── jersey-client-1.13.jar │ │ │ │ ├── jersey-core-1.13-sources.jar │ │ │ │ ├── jersey-core-1.13.jar │ │ │ │ ├── jersey-json-1.13-sources.jar │ │ │ │ ├── jersey-json-1.13.jar │ │ │ │ ├── jettison-1.1.jar │ │ │ │ ├── jjwt-0.5.1.jar │ │ │ │ ├── jsr305-1.3.9.jar │ │ │ │ ├── license.txt │ │ │ │ ├── mail-1.4.5-sources.jar │ │ │ │ ├── mail-1.4.5.jar │ │ │ │ └── serviceexplorer-common.jar │ │ │ └── pom.xml │ │ └── com.microsoftopentechnologies.windowsazure.tools.wasdkjava.ui │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── com │ │ │ └── microsoftopentechnologies │ │ │ └── windowsazure │ │ │ └── tools │ │ │ └── wasdkjava │ │ │ └── ui │ │ │ ├── Activator.java │ │ │ └── classpath │ │ │ ├── ClasspathContainer.java │ │ │ ├── ClasspathContainerPage.java │ │ │ ├── ContainerInitializer.java │ │ │ ├── Messages.java │ │ │ └── messages.properties │ ├── JDBCLibrary │ │ └── JavaEE6 │ │ │ ├── com.microsoft.sqljdbc4.feature │ │ │ ├── .project │ │ │ ├── build.properties │ │ │ ├── feature.xml │ │ │ └── pom.xml │ │ │ ├── com.microsoft.sqljdbc4.ui │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── microsoft │ │ │ │ └── sqljdbc4 │ │ │ │ └── ui │ │ │ │ ├── activator │ │ │ │ └── Activator.java │ │ │ │ └── classpath │ │ │ │ ├── ClasspathContainer.java │ │ │ │ ├── ClasspathContainerPage.java │ │ │ │ ├── ContainerInitializer.java │ │ │ │ ├── Messages.java │ │ │ │ └── messages.properties │ │ │ └── com.microsoft.sqljdbc4 │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── pom.xml │ │ │ └── readme.txt │ └── QpidLibraries │ │ ├── com.microsoftopentechnologies.qpid.feature │ │ ├── .project │ │ ├── build.properties │ │ ├── feature.xml │ │ └── pom.xml │ │ ├── com.microsoftopentechnologies.qpid.ui │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── microsoftopentechnologies │ │ │ └── waqpidjava │ │ │ └── ui │ │ │ ├── Activator.java │ │ │ └── classpath │ │ │ ├── ClasspathContainer.java │ │ │ ├── ClasspathContainerPage.java │ │ │ ├── ContainerInitializer.java │ │ │ ├── Messages.java │ │ │ └── messages.properties │ │ └── com.microsoftopentechnologies.qpid │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── dependencies │ │ ├── LICENSE.txt │ │ ├── THIRDPARTYNOTICES.txt │ │ ├── geronimo-jms_1.1_spec-1.0.jar │ │ ├── qpid-amqp-1-0-client-jms-0.19.jar │ │ └── qpid-amqp-1-0-common-0.19.jar │ │ ├── pom.xml │ │ └── qpid-amqp-1-0-client-0.19.jar ├── WindowsAzurePlugin4EJ │ ├── .project │ ├── category.xml │ ├── index.html │ ├── pom.xml │ ├── site.xml │ └── web │ │ ├── site.css │ │ └── site.xsl ├── com.microsoft.azureexplorer.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── com.microsoft.azureexplorer │ ├── .classpath │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── contexts.xml │ ├── icons │ │ └── readme.txt │ ├── plugin.xml │ ├── pom.xml │ ├── resources │ │ └── settings.json │ └── src │ │ └── com │ │ └── microsoft │ │ └── azureexplorer │ │ ├── Activator.java │ │ ├── NodeActionsMap.java │ │ ├── actions │ │ ├── AttachExternalStorageAccountAction.java │ │ ├── CreateBlobContainer.java │ │ ├── CreateQueueAction.java │ │ ├── CreateStorageAccountAction.java │ │ ├── CreateTableAction.java │ │ ├── CreateVMAction.java │ │ └── ManageSubscriptionsAction.java │ │ ├── editors │ │ ├── BlobExplorerFileEditor.java │ │ ├── QueueFileEditor.java │ │ ├── StorageEditorInput.java │ │ └── TableFileEditor.java │ │ ├── forms │ │ ├── CreateBlobContainerForm.java │ │ ├── CreateCloudServiceForm.java │ │ ├── CreateQueueForm.java │ │ ├── CreateStorageAccountForm.java │ │ ├── CreateTableForm.java │ │ ├── ExternalStorageAccountForm.java │ │ ├── OpenSSLFinderForm.java │ │ ├── QueueMessageForm.java │ │ ├── SubscriptionPropertyPage.java │ │ ├── TableEntityForm.java │ │ ├── UploadBlobFileForm.java │ │ ├── ViewMessageForm.java │ │ └── createvm │ │ │ ├── CloudServiceStep.java │ │ │ ├── CreateVMWizard.java │ │ │ ├── EndpointStep.java │ │ │ ├── MachineSettingsStep.java │ │ │ ├── SelectImageStep.java │ │ │ └── SubscriptionStep.java │ │ ├── helpers │ │ ├── IDEHelperImpl.java │ │ ├── PreferenceUtil.java │ │ └── UIHelperImpl.java │ │ └── views │ │ └── ServiceExplorerView.java ├── com.microsoftopentechnologies.wacommon.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── com.microsoftopentechnologies.wacommon │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── contexts.xml │ ├── icons │ │ └── readme.txt │ ├── plugin.xml │ ├── pom.xml │ ├── resources │ │ ├── .cspack.jar │ │ ├── AzureCommons.jar │ │ ├── ProjectManagerLibrary.jar │ │ ├── data.xml │ │ ├── encutil.exe │ │ └── readme.txt │ └── src │ │ └── com │ │ └── microsoftopentechnologies │ │ └── wacommon │ │ ├── Activator.java │ │ ├── adauth │ │ ├── AuthCodeCallback.java │ │ ├── BrowserLauncherEclipse.java │ │ ├── BrowserLocationListener.java │ │ ├── BrowserSilentProgressListener.java │ │ ├── Messages.java │ │ └── messages.properties │ │ ├── commoncontrols │ │ ├── ImportSubscriptionDialog.java │ │ ├── Messages.java │ │ ├── NewCertificateDialog.java │ │ ├── NewCertificateDialogData.java │ │ ├── NewResourceGroupDialog.java │ │ ├── PublishSettingsDialog.java │ │ └── messages.properties │ │ ├── preference │ │ └── WindowsAzurePreferencePage.java │ │ ├── startup │ │ ├── AcceptLicenseDlg.java │ │ ├── DataOperations.java │ │ └── WACPStartUp.java │ │ ├── storageregistry │ │ ├── Messages.java │ │ ├── PreferenceUtilStrg.java │ │ └── messages.properties │ │ ├── telemetry │ │ └── AppInsightsCustomEvent.java │ │ └── utils │ │ ├── Base64.java │ │ ├── CerPfxUtil.java │ │ ├── FileUtil.java │ │ ├── Messages.java │ │ ├── PluginUtil.java │ │ ├── WACommonException.java │ │ └── messages.properties ├── com.persistent.winazure.eclipseplugin.feature │ ├── .project │ ├── build.properties │ ├── feature.xml │ └── pom.xml ├── com.persistent.winazure.eclipseplugin │ ├── .classpath │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── contexts.xml │ ├── html │ │ ├── Project Properties.htm │ │ ├── Windows azure Role.htm │ │ ├── images │ │ │ ├── projCreation.jpg │ │ │ ├── projectproperties.jpg │ │ │ └── windowsazurerole.jpg │ │ ├── project create page.htm │ │ └── remoteAccessHelp.htm │ ├── icons │ │ ├── large │ │ │ └── readme.txt │ │ ├── readme.txt │ │ └── small │ │ │ └── readme.txt │ ├── plugin.xml │ ├── pom.xml │ ├── resources │ │ ├── componentsets.xml │ │ ├── componentsets_old.xml │ │ ├── preferencesets.xml │ │ ├── preferencesets_old.xml │ │ └── readme.txt │ └── src │ │ ├── com │ │ ├── gigaspaces │ │ │ └── azure │ │ │ │ ├── commands │ │ │ │ └── AzureProjectPropertyTester.java │ │ │ │ ├── deploy │ │ │ │ ├── DeploymentManager.java │ │ │ │ ├── Messages.java │ │ │ │ ├── NotifierImp.java │ │ │ │ └── messages.properties │ │ │ │ ├── handler │ │ │ │ ├── DeployCommandHandler.java │ │ │ │ ├── Messages.java │ │ │ │ ├── UndeployCommandHandler.java │ │ │ │ └── messages.properties │ │ │ │ ├── propertypage │ │ │ │ ├── CredentialsPropertyPage.java │ │ │ │ ├── Messages.java │ │ │ │ ├── SubscriptionPropertyPage.java │ │ │ │ └── messages.properties │ │ │ │ ├── rest │ │ │ │ ├── Messages.java │ │ │ │ ├── PluginConstants.java │ │ │ │ ├── RestAPIConflictException.java │ │ │ │ └── messages.properties │ │ │ │ ├── runnable │ │ │ │ ├── AccountActionRunnable.java │ │ │ │ ├── CacheAccountWithProgressBar.java │ │ │ │ ├── CacheAccountWithProgressWindow.java │ │ │ │ ├── FetchDeploymentsForHostedServiceWithProgressWindow.java │ │ │ │ ├── LoadAccountWithProgressBar.java │ │ │ │ ├── LoadAccountWithProgressWindow.java │ │ │ │ ├── NewHostedServiceWithProgressWindow.java │ │ │ │ └── NewStorageAccountWithProgressWindow.java │ │ │ │ ├── util │ │ │ │ ├── CommandLineException.java │ │ │ │ ├── FileSearch.java │ │ │ │ ├── FileSearchListerner.java │ │ │ │ ├── Messages.java │ │ │ │ ├── MethodUtils.java │ │ │ │ ├── PreferenceUtil.java │ │ │ │ ├── PreferenceUtilForProjectUpgrade.java │ │ │ │ ├── PreferenceUtilPubWizard.java │ │ │ │ ├── UIUtils.java │ │ │ │ ├── WizardCache.java │ │ │ │ └── messages.properties │ │ │ │ ├── views │ │ │ │ ├── Messages.java │ │ │ │ ├── TableRowDescriptior.java │ │ │ │ ├── WindowsAzureActivityLogView.java │ │ │ │ └── messages.properties │ │ │ │ └── wizards │ │ │ │ ├── CustomViewerFilter.java │ │ │ │ ├── DeployWizard.java │ │ │ │ ├── DeployWizardDialog.java │ │ │ │ ├── Messages.java │ │ │ │ ├── NewHostedServiceDialog.java │ │ │ │ ├── NewStorageAccountDialog.java │ │ │ │ ├── PathListener.java │ │ │ │ ├── PfxDialog.java │ │ │ │ ├── PfxPwdDialog.java │ │ │ │ ├── SignInPage.java │ │ │ │ ├── UndeployWizard.java │ │ │ │ ├── UndeploymentPage.java │ │ │ │ ├── WADialog.java │ │ │ │ ├── WindowsAzureDeploymentJob.java │ │ │ │ ├── WindowsAzurePage.java │ │ │ │ ├── WindowsAzureUndeploymentJob.java │ │ │ │ ├── WizardCacheManager.java │ │ │ │ └── messages.properties │ │ └── persistent │ │ │ ├── builder │ │ │ ├── Messages.java │ │ │ ├── WADependencyBuilder.java │ │ │ ├── WAExportWarEar.java │ │ │ └── messages.properties │ │ │ ├── contextmenu │ │ │ ├── AddWorkerRole.java │ │ │ ├── CommonHandler.java │ │ │ ├── Messages.java │ │ │ ├── NewAzureProjectPromptDlg.java │ │ │ ├── ProjectPropertiesHandler.java │ │ │ ├── PublishContextMenuHandler.java │ │ │ ├── SingleClickPublishUtils.java │ │ │ └── messages.properties │ │ │ ├── ui │ │ │ ├── decorator │ │ │ │ ├── LightWeightDecorator.java │ │ │ │ ├── Messages.java │ │ │ │ └── messages.properties │ │ │ ├── preference │ │ │ │ ├── Messages.java │ │ │ │ ├── ServiceEndptPreferencePage.java │ │ │ │ ├── StorageAccountDialog.java │ │ │ │ ├── StorageAccountsPreferencePage.java │ │ │ │ └── messages.properties │ │ │ ├── projwizard │ │ │ │ ├── ContextMenuHandler.java │ │ │ │ ├── Messages.java │ │ │ │ ├── WAApplicationDialog.java │ │ │ │ ├── WAKeyFeaturesPage.java │ │ │ │ ├── WAProjectWizard.java │ │ │ │ ├── WAProjectWizardPage.java │ │ │ │ ├── WATabPage.java │ │ │ │ └── messages.properties │ │ │ ├── propertypage │ │ │ │ ├── Messages.java │ │ │ │ ├── WAProjectNature.java │ │ │ │ ├── WARemoteAccessPropertyPage.java │ │ │ │ ├── WARolesPropertyPage.java │ │ │ │ ├── WAWinAzurePropertyPage.java │ │ │ │ └── messages.properties │ │ │ └── toolbar │ │ │ │ ├── Messages.java │ │ │ │ ├── WABuildCloud.java │ │ │ │ ├── WANewCertificate.java │ │ │ │ ├── WANewProject.java │ │ │ │ ├── WAResetEmulator.java │ │ │ │ ├── WARunEmulator.java │ │ │ │ └── messages.properties │ │ │ ├── util │ │ │ ├── AcceptLicenseAgreementDlg.java │ │ │ ├── AppCmpntParam.java │ │ │ ├── JdkSrvConfig.java │ │ │ ├── JdkSrvConfigListener.java │ │ │ ├── MessageUtil.java │ │ │ ├── Messages.java │ │ │ ├── ParseXML.java │ │ │ ├── ProjectNatureHelper.java │ │ │ ├── SDKInstallationDlg.java │ │ │ ├── WAEclipseHelper.java │ │ │ ├── WAPropertyTester.java │ │ │ ├── WAResourceChangeListener.java │ │ │ ├── WAStartUp.java │ │ │ └── messages.properties │ │ │ └── winazureroles │ │ │ ├── CacheDialog.java │ │ │ ├── CertificateDialog.java │ │ │ ├── DebugConfigurationDialog.java │ │ │ ├── ImportExportDialog.java │ │ │ ├── LocalStorageResourceDialog.java │ │ │ ├── Messages.java │ │ │ ├── SimplePfxPwdDlg.java │ │ │ ├── WAEndpointDialog.java │ │ │ ├── WAEnvVarDialog.java │ │ │ ├── WARCaching.java │ │ │ ├── WARCertificates.java │ │ │ ├── WARComponents.java │ │ │ ├── WARDebugging.java │ │ │ ├── WAREndpoints.java │ │ │ ├── WAREnvVars.java │ │ │ ├── WARGeneral.java │ │ │ ├── WARLoadBalance.java │ │ │ ├── WARLocalStorage.java │ │ │ ├── WARoles.java │ │ │ ├── WASSLOffloading.java │ │ │ ├── WAServerConfiguration.java │ │ │ └── messages.properties │ │ └── waeclipseplugin │ │ ├── Activator.java │ │ ├── Messages.java │ │ └── messages.properties └── pom.xml ├── README.md ├── StarterKit ├── CSPackAntTask │ ├── .classpath │ ├── .externalToolBuilders │ │ └── JarBuilder.launch │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── build.properties │ ├── build.xml │ ├── readme.txt │ ├── resources │ │ ├── sdk.properties │ │ └── sdkKit │ │ │ └── readme.txt │ └── src │ │ ├── com │ │ └── microsoftopentechnologies │ │ │ ├── azuremanagementutil │ │ │ ├── exception │ │ │ │ ├── InvalidRestAPIArgument.java │ │ │ │ └── InvalidThumbprintException.java │ │ │ ├── model │ │ │ │ ├── CreateHostedService.java │ │ │ │ ├── CreateStorageServiceInput.java │ │ │ │ ├── InstanceStatus.java │ │ │ │ ├── KeyName.java │ │ │ │ ├── ModelFactory.java │ │ │ │ ├── Notifier.java │ │ │ │ ├── StorageService.java │ │ │ │ ├── StorageServices.java │ │ │ │ └── Subscription.java │ │ │ ├── rest │ │ │ │ ├── AzureApplicationInsightsServices.java │ │ │ │ ├── ExponentialMultipartUploadPolicy.java │ │ │ │ ├── HttpVerb.java │ │ │ │ ├── MediaType.java │ │ │ │ ├── MultipartUploadParameters.java │ │ │ │ ├── MultipartUploadRetryPolicy.java │ │ │ │ ├── SubscriptionTransformer.java │ │ │ │ ├── WindowsAzureRestUtils.java │ │ │ │ ├── WindowsAzureService.java │ │ │ │ ├── WindowsAzureServiceImpl.java │ │ │ │ ├── WindowsAzureServiceManagement.java │ │ │ │ └── WindowsAzureStorageServices.java │ │ │ ├── task │ │ │ │ └── LoadStorageServiceTask.java │ │ │ └── util │ │ │ │ └── Base64.java │ │ │ └── windowsazure │ │ │ └── tools │ │ │ ├── build │ │ │ ├── AutoUpldCmpnts.java │ │ │ ├── AzurePublish.java │ │ │ ├── AzureUnPublish.java │ │ │ ├── BlobOperations.java │ │ │ ├── CloudUpload.java │ │ │ ├── Component.java │ │ │ ├── DeployMethod.java │ │ │ ├── ErrorType.java │ │ │ ├── ImportMethod.java │ │ │ ├── PackageType.java │ │ │ ├── ProgressBar.java │ │ │ ├── StartupEnv.java │ │ │ ├── UseCTPFormat.java │ │ │ ├── Utils.java │ │ │ ├── WindowsAzureManager.java │ │ │ ├── WindowsAzurePackage.java │ │ │ ├── WorkerRole.java │ │ │ └── XMLUtil.java │ │ │ └── cspack │ │ │ ├── BinaryPackageCreator.java │ │ │ ├── Configuration.java │ │ │ ├── PackageCreator.java │ │ │ ├── PackageDefinitionCreator.java │ │ │ ├── Utils.java │ │ │ └── domain │ │ │ ├── ContenTypesObject.java │ │ │ ├── ContentType.java │ │ │ ├── ContentTypes.java │ │ │ ├── FileWithHash.java │ │ │ ├── FilesWithHash.java │ │ │ ├── Relationship.java │ │ │ ├── RelationshipTypes.java │ │ │ ├── RequiredFeature.java │ │ │ ├── RoleWrapper.java │ │ │ ├── RuntimeModel.java │ │ │ ├── SupportData.java │ │ │ ├── SupportedOS.java │ │ │ └── xsd │ │ │ ├── packagexml │ │ │ ├── ContentDefintionElement.java │ │ │ ├── ContentDescriptionElement.java │ │ │ ├── FileDefinitionElement.java │ │ │ ├── FileDescriptionElement.java │ │ │ ├── KeyValuePairElement.java │ │ │ ├── LayoutDefintionElement.java │ │ │ ├── LayoutDescriptionElement.java │ │ │ ├── PackageContentsElement.java │ │ │ ├── PackageDefinitionElement.java │ │ │ ├── PackageLayoutsElement.java │ │ │ ├── PackageMetaDataElement.java │ │ │ └── package-info.java │ │ │ ├── serviceconfiguration │ │ │ ├── Certificates.java │ │ │ ├── ConfigurationSettings.java │ │ │ ├── ObjectFactory.java │ │ │ ├── Role.java │ │ │ ├── ServiceConfiguration.java │ │ │ └── package-info.java │ │ │ └── servicedefinition │ │ │ ├── Certificates.java │ │ │ ├── Endpoints.java │ │ │ ├── EntryPoint.java │ │ │ ├── ImportElement.java │ │ │ ├── LocalResources.java │ │ │ ├── ObjectFactory.java │ │ │ ├── Role.java │ │ │ ├── Runtime.java │ │ │ ├── ServiceDefinition.java │ │ │ ├── Task.java │ │ │ └── package-info.java │ │ └── templates │ │ ├── LocalContent │ │ └── Roles │ │ │ ├── RoleModel.xml.hbs │ │ │ ├── RuntimeSetup.Manifest.hbs │ │ │ └── __entrypoint.txt.hbs │ │ ├── NamedStreams │ │ ├── RequiredFeatures │ │ │ └── 1.0.hbs │ │ ├── SupportData │ │ │ └── 1.0.hbs │ │ └── SupportedOsFamilies │ │ │ └── 1.0.hbs │ │ ├── ServiceDefinition │ │ ├── ServiceDefinition.csdef.hbs │ │ ├── ServiceDefinition.rd.hbs │ │ └── servicedefinition.rdsc.hbs │ │ ├── [Content_Types].xml.hbs │ │ ├── [Content_Types]_binary.xml.hbs │ │ ├── _rels │ │ └── .rels.hbs │ │ └── csman.csman.hbs └── WindowsAzureDeploymentProject │ ├── .cspack.jar │ ├── .externalToolBuilders │ └── WindowsAzureProjectBuilder.launch │ ├── .project │ ├── .rolePropertiesOS3 │ ├── .templates │ ├── cloudTools │ │ ├── buildAndPublish.cmd │ │ ├── buildAndPublish.sh │ │ ├── publish.cmd │ │ ├── publish.sh │ │ ├── unpublish.cmd │ │ └── unpublish.sh │ ├── devPortal │ │ └── WindowsAzurePortal.url │ ├── emulatorTools │ │ ├── .WaitForReset.cmd │ │ ├── .elevate.vbs │ │ ├── .whileproc.cmd │ │ ├── ResetEmulator.cmd │ │ └── RunInEmulator.cmd │ └── startup │ │ └── .startup.cmd │ ├── ServiceConfiguration.cscfg │ ├── ServiceDefinition.csdef │ ├── WorkerRole1 │ └── approot │ │ ├── HelloWorld.war │ │ ├── change.cmd │ │ ├── run.cmd │ │ ├── startup.cmd │ │ └── util │ │ ├── .start.cmd │ │ ├── .wash.ps1 │ │ ├── download.vbs │ │ ├── powershell.exe.activation_config │ │ ├── readme.txt │ │ ├── unzip.vbs │ │ ├── wash.cmd │ │ └── whileproc.cmd │ ├── cert │ ├── SampleRemoteAccessPrivate.pfx │ └── SampleRemoteAccessPublic.cer │ ├── deploy │ └── .gitignore │ ├── lib │ ├── antlr-runtime-4.0.jar │ ├── handlebars-1.0.0.jar │ ├── js.jar │ ├── slf4j-api-1.7.12.jar │ ├── slf4j-simple-1.7.12.jar │ └── thirdpartynotices.txt │ ├── package.xml │ └── readme.txt └── Utils ├── ACSFilter ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── build.xml ├── docs │ ├── Steps for configuring the ACS Java Filter.docx │ └── WindowsAzure-ACS-JavaLibrary-v1.doc ├── ext │ └── servlet-api.jar └── src │ └── com │ └── microsoftopentechnologies │ └── acs │ ├── federation │ ├── ACSFederationAuthFilter.java │ ├── HttpServletRequestDetails.java │ └── StatelessFilterCommand.java │ ├── saml │ ├── AssertionNotFoundException.java │ ├── InvalidAssertionException.java │ ├── SAML11Assertion.java │ ├── SAML20Assertion.java │ └── SAMLAssertion.java │ ├── util │ ├── Base64.java │ ├── DeflaterUtils.java │ ├── NamespaceContextImpl.java │ └── Utils.java │ └── xmldsig │ ├── CustomIdentifiedElement.java │ ├── SignatureValidationException.java │ ├── SignatureValidationResult.java │ ├── SignatureValidator.java │ ├── TrustParameters.java │ └── UntrustedCertificateException.java ├── ARRConfigurationAgent ├── ARRAgent.sln ├── ARRAgent.suo ├── ARRAgent.v12.suo ├── ARRConfigurationAgent │ ├── ARRAgent.csproj │ ├── ArrWorker.cs │ ├── GlobalSuppressions.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SessionAffinityAgent.csproj.vspscc │ ├── SynchManager.cs │ └── app.config ├── SessionAffinityAgent.suo └── SessionAffinityAgent.vssscc ├── AzureCommons ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── build.properties ├── build.xml ├── resources │ ├── .cspack.jar │ ├── ProjectManagerLibrary.jar │ └── readme.txt └── src │ └── com │ ├── microsoft │ └── applicationinsights │ │ └── preference │ │ ├── ApplicationInsightsPageTableElement.java │ │ ├── ApplicationInsightsPageTableElements.java │ │ ├── ApplicationInsightsResource.java │ │ ├── ApplicationInsightsResourceRegistry.java │ │ └── ApplicationInsightsResourceWithSameName.java │ └── microsoftopentechnologies │ ├── azurecommons │ ├── builder │ │ └── WAExportJar.java │ ├── deploy │ │ ├── DeploymentEventArgs.java │ │ ├── DeploymentEventListener.java │ │ ├── DeploymentManagerUtilMethods.java │ │ ├── RequestStatus.java │ │ ├── UploadProgressEventArgs.java │ │ ├── UploadProgressEventListener.java │ │ ├── model │ │ │ ├── AutoUpldCmpnts.java │ │ │ ├── CertificateUpload.java │ │ │ ├── CertificateUploadList.java │ │ │ ├── DeployDescriptor.java │ │ │ ├── Header.java │ │ │ ├── RemoteDesktopDescriptor.java │ │ │ ├── Response.java │ │ │ └── package-info.java │ │ ├── propertypages │ │ │ ├── CredentialsPropertyPageUtilMethods.java │ │ │ ├── SubscriptionPropertyPageTableElement.java │ │ │ ├── SubscriptionPropertyPageTableElements.java │ │ │ └── SubscriptionPropertyPageUtilMethods.java │ │ ├── tasks │ │ │ ├── AccountCachingExceptionEvent.java │ │ │ ├── LoadingAccoutListener.java │ │ │ ├── LoadingHostedServicesTask.java │ │ │ ├── LoadingLocationsTask.java │ │ │ ├── LoadingStorageAccountTask.java │ │ │ ├── LoadingSubscriptionTask.java │ │ │ ├── LoadingTask.java │ │ │ └── LoadingTaskRunner.java │ │ ├── util │ │ │ ├── MethodUtils.java │ │ │ ├── PublishData.java │ │ │ ├── PublishProfile.java │ │ │ └── UIUtils.java │ │ └── wizard │ │ │ ├── ConfigurationEventArgs.java │ │ │ ├── ConfigurationEventListener.java │ │ │ ├── DeployWizardUtilMethods.java │ │ │ └── WizardCacheManagerUtilMethods.java │ ├── exception │ │ ├── AzureCommonsException.java │ │ ├── DeploymentException.java │ │ └── RestAPIException.java │ ├── messagehandler │ │ ├── PropUtil.java │ │ └── messages.properties │ ├── model │ │ └── RoleAndEndpoint.java │ ├── preference │ │ ├── PreferenceUtilMethods.java │ │ ├── StorageAccPrefPageTableElement.java │ │ └── StorageAccPrefPageTableElements.java │ ├── propertypage │ │ ├── Azure.java │ │ └── RemoteAccess.java │ ├── roleoperations │ │ ├── CacheDialogUtilMethods.java │ │ ├── CertificateDialogUtilMethods.java │ │ ├── ImportExportDialogUtilMethods.java │ │ ├── JdkSrvConfigUtilMethods.java │ │ ├── LocalStrgResDialogUtilMethods.java │ │ ├── WAEndpointDialogUtilMethods.java │ │ ├── WAEnvVarDialogUtilMethods.java │ │ ├── WARCachingUtilMethods.java │ │ ├── WARCertificatesUtilMethods.java │ │ ├── WARDebuggingUtilMethods.java │ │ ├── WAREndpointsUtilMethods.java │ │ ├── WARLoadBalanceUtilMethods.java │ │ ├── WARLocalStorageUtilMethods.java │ │ ├── WAResetEmulator.java │ │ ├── WASSLOffloadingUtilMethods.java │ │ ├── WAServerConfUtilMethods.java │ │ └── WizardUtilMethods.java │ ├── startup │ │ └── WAStartUpUtilMethods.java │ ├── storageregistry │ │ ├── DuplicateAccounts.java │ │ ├── StorageAccount.java │ │ ├── StorageAccountRegistry.java │ │ └── StorageRegistryUtilMethods.java │ ├── util │ │ └── WAEclipseHelperMethods.java │ ├── wacommonutil │ │ ├── CerPfxUtil.java │ │ ├── EncUtilHelper.java │ │ ├── FileUtil.java │ │ ├── PreferenceSetUtil.java │ │ └── Utils.java │ └── xmlhandling │ │ ├── DataOperations.java │ │ └── ParseXMLUtilMethods.java │ ├── deploy │ └── util │ │ ├── PublishData.java │ │ └── PublishProfile.java │ └── model │ └── Subscription.java ├── GSRestUtil ├── restutil.sln ├── restutil.suo └── restutil │ ├── Arguments.cs │ ├── Assertion.cs │ ├── CertificateNotFoundException.cs │ ├── Command.cs │ ├── CommandFactory.cs │ ├── ICommand.cs │ ├── InstallCommand.cs │ ├── InvalidAccessKeyException.cs │ ├── InvalidRequestException.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RequestTarget.cs │ ├── RestCommand.cs │ ├── UnKnownCommandException.cs │ ├── app.config │ └── restutil.csproj ├── ProjectManagerLibrary ├── .classpath ├── .gitignore ├── .project ├── META-INF │ └── MANIFEST.MF ├── build.xml ├── extlib │ ├── commons-lang3-3.3.2.jar │ ├── jettison-1.1.jar │ └── readme.txt └── src │ ├── arrconfig │ ├── ARRAgent.exe │ ├── ARRAgent.exe.config │ └── ConfigureARR.cmd │ └── com │ └── interopbridges │ └── tools │ └── windowsazure │ ├── DeploymentSlot.java │ ├── JSONHelper.java │ ├── OSFamilyType.java │ ├── ParserXMLUtility.java │ ├── WARoleComponentCloudUploadMode.java │ ├── WindowsAzureCacheExpirationPolicy.java │ ├── WindowsAzureCertificate.java │ ├── WindowsAzureConstants.java │ ├── WindowsAzureEndpoint.java │ ├── WindowsAzureEndpointType.java │ ├── WindowsAzureInvalidProjectOperationException.java │ ├── WindowsAzureLocalStorage.java │ ├── WindowsAzureNamedCache.java │ ├── WindowsAzurePackageType.java │ ├── WindowsAzureProjectManager.java │ ├── WindowsAzureRole.java │ ├── WindowsAzureRoleComponent.java │ ├── WindowsAzureRoleComponentCloudMethod.java │ ├── WindowsAzureRoleComponentDeployMethod.java │ └── WindowsAzureRoleComponentImportMethod.java └── encutil ├── encrypt.sln ├── encrypt.v12.suo ├── encrypt.vssscc └── encrypt ├── CertUtil.cs ├── GlobalSuppressions.cs ├── Operation.cs ├── Option.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── encrypt.csproj └── encrypt.csproj.vspscc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/.gitignore -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.feature/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.feature/feature.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.feature/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/.classpath -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/build.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/contexts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/contexts.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/plugin.properties: -------------------------------------------------------------------------------- 1 | page.name=Azure Access Control Services Filter -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/plugin.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/resources/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter.ui/resources/web.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter/.classpath -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter/ACSAuthFilter.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter/ACSAuthFilter.jar -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter/build.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/ACSLibrary/com.microsoftopentechnologies.acsfilter/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.feature/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.feature/feature.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.feature/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/.classpath -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/build.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/contexts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/contexts.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/icons/large/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/icons/large/readme.txt -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/icons/small/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/icons/small/readme.txt -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/plugin.properties: -------------------------------------------------------------------------------- 1 | page.name=Application Insights SDK 2 | -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/plugin.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/resources/ApplicationInsights.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/resources/ApplicationInsights.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/resources/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AppInsights/com.microsoft.applicationinsights.ui/resources/web.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.sdk.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.sdk.feature/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.sdk.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.sdk.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.sdk.feature/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.sdk/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.sdk/.classpath -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.sdk/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.sdk/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.sdk/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.sdk/build.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.sdk/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.sdk/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.wasdkjava.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.wasdkjava.ui/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.wasdkjava.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/AzureLibraries/com.microsoftopentechnologies.windowsazure.tools.wasdkjava.ui/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.feature/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.feature/feature.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.feature/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.ui/.classpath -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.ui/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.ui/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.ui/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.ui/build.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.ui/plugin.properties: -------------------------------------------------------------------------------- 1 | page.name=Microsoft JDBC Driver 4.2 for SQL Server 2 | -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.ui/plugin.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4.ui/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4/.classpath -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4/build.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/JDBCLibrary/JavaEE6/com.microsoft.sqljdbc4/readme.txt -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.feature/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.feature/feature.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.feature/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.ui/.classpath -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.ui/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.ui/build.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.ui/plugin.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.ui/plugin.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid.ui/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/.classpath -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/build.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/dependencies/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/dependencies/LICENSE.txt -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/dependencies/THIRDPARTYNOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/dependencies/THIRDPARTYNOTICES.txt -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/qpid-amqp-1-0-client-0.19.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/AddLibrary/QpidLibraries/com.microsoftopentechnologies.qpid/qpid-amqp-1-0-client-0.19.jar -------------------------------------------------------------------------------- /PluginsAndFeatures/WindowsAzurePlugin4EJ/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/WindowsAzurePlugin4EJ/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/WindowsAzurePlugin4EJ/category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/WindowsAzurePlugin4EJ/category.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/WindowsAzurePlugin4EJ/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/WindowsAzurePlugin4EJ/index.html -------------------------------------------------------------------------------- /PluginsAndFeatures/WindowsAzurePlugin4EJ/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/WindowsAzurePlugin4EJ/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/WindowsAzurePlugin4EJ/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/WindowsAzurePlugin4EJ/site.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/WindowsAzurePlugin4EJ/web/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/WindowsAzurePlugin4EJ/web/site.css -------------------------------------------------------------------------------- /PluginsAndFeatures/WindowsAzurePlugin4EJ/web/site.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/WindowsAzurePlugin4EJ/web/site.xsl -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer.feature/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer.feature/feature.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer.feature/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/.classpath -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/build.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/contexts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/contexts.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/icons/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/icons/readme.txt -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/plugin.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/resources/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/resources/settings.json -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/Activator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/Activator.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/NodeActionsMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/NodeActionsMap.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/actions/CreateBlobContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/actions/CreateBlobContainer.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/actions/CreateQueueAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/actions/CreateQueueAction.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/actions/CreateTableAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/actions/CreateTableAction.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/actions/CreateVMAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/actions/CreateVMAction.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/editors/BlobExplorerFileEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/editors/BlobExplorerFileEditor.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/editors/QueueFileEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/editors/QueueFileEditor.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/editors/StorageEditorInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/editors/StorageEditorInput.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/editors/TableFileEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/editors/TableFileEditor.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/CreateBlobContainerForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/CreateBlobContainerForm.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/CreateCloudServiceForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/CreateCloudServiceForm.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/CreateQueueForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/CreateQueueForm.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/CreateStorageAccountForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/CreateStorageAccountForm.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/CreateTableForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/CreateTableForm.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/OpenSSLFinderForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/OpenSSLFinderForm.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/QueueMessageForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/QueueMessageForm.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/SubscriptionPropertyPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/SubscriptionPropertyPage.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/TableEntityForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/TableEntityForm.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/UploadBlobFileForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/UploadBlobFileForm.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/ViewMessageForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/ViewMessageForm.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/createvm/CloudServiceStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/createvm/CloudServiceStep.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/createvm/CreateVMWizard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/createvm/CreateVMWizard.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/createvm/EndpointStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/createvm/EndpointStep.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/createvm/SelectImageStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/createvm/SelectImageStep.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/createvm/SubscriptionStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/forms/createvm/SubscriptionStep.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/helpers/IDEHelperImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/helpers/IDEHelperImpl.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/helpers/PreferenceUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/helpers/PreferenceUtil.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/helpers/UIHelperImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/helpers/UIHelperImpl.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/views/ServiceExplorerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoft.azureexplorer/src/com/microsoft/azureexplorer/views/ServiceExplorerView.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon.feature/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon.feature/feature.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon.feature/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon/.classpath -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon/build.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon/contexts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon/contexts.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon/icons/readme.txt: -------------------------------------------------------------------------------- 1 | Copy a place holder icon with name certificate.png -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon/plugin.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon/resources/.cspack.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon/resources/.cspack.jar -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon/resources/AzureCommons.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon/resources/AzureCommons.jar -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon/resources/ProjectManagerLibrary.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon/resources/ProjectManagerLibrary.jar -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon/resources/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon/resources/data.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon/resources/encutil.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon/resources/encutil.exe -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon/resources/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon/resources/readme.txt -------------------------------------------------------------------------------- /PluginsAndFeatures/com.microsoftopentechnologies.wacommon/src/com/microsoftopentechnologies/wacommon/Activator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.microsoftopentechnologies.wacommon/src/com/microsoftopentechnologies/wacommon/Activator.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin.feature/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin.feature/feature.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin.feature/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/.classpath -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/.project -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/build.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/contexts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/contexts.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/html/Project Properties.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/html/Project Properties.htm -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/html/Windows azure Role.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/html/Windows azure Role.htm -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/html/images/projCreation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/html/images/projCreation.jpg -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/html/images/projectproperties.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/html/images/projectproperties.jpg -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/html/images/windowsazurerole.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/html/images/windowsazurerole.jpg -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/html/project create page.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/html/project create page.htm -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/html/remoteAccessHelp.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/html/remoteAccessHelp.htm -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/icons/large/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/icons/large/readme.txt -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/icons/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/icons/readme.txt -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/icons/small/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/icons/small/readme.txt -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/plugin.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/pom.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/resources/componentsets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/resources/componentsets.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/resources/componentsets_old.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/resources/componentsets_old.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/resources/preferencesets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/resources/preferencesets.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/resources/preferencesets_old.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/resources/preferencesets_old.xml -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/resources/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/resources/readme.txt -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/deploy/DeploymentManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/deploy/DeploymentManager.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/deploy/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/deploy/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/deploy/NotifierImp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/deploy/NotifierImp.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/deploy/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/deploy/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/handler/DeployCommandHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/handler/DeployCommandHandler.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/handler/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/handler/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/handler/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/handler/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/propertypage/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/propertypage/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/propertypage/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/propertypage/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/rest/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/rest/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/rest/PluginConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/rest/PluginConstants.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/rest/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/rest/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/CommandLineException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/CommandLineException.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/FileSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/FileSearch.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/FileSearchListerner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/FileSearchListerner.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/MethodUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/MethodUtils.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/PreferenceUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/PreferenceUtil.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/PreferenceUtilPubWizard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/PreferenceUtilPubWizard.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/UIUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/UIUtils.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/WizardCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/WizardCache.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/util/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/views/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/views/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/views/TableRowDescriptior.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/views/TableRowDescriptior.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/views/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/views/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/CustomViewerFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/CustomViewerFilter.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/DeployWizard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/DeployWizard.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/DeployWizardDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/DeployWizardDialog.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/PathListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/PathListener.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/PfxDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/PfxDialog.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/PfxPwdDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/PfxPwdDialog.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/SignInPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/SignInPage.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/UndeployWizard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/UndeployWizard.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/UndeploymentPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/UndeploymentPage.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/WADialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/WADialog.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/WindowsAzurePage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/WindowsAzurePage.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/WizardCacheManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/WizardCacheManager.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/gigaspaces/azure/wizards/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/builder/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/builder/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/builder/WADependencyBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/builder/WADependencyBuilder.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/builder/WAExportWarEar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/builder/WAExportWarEar.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/builder/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/builder/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/contextmenu/AddWorkerRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/contextmenu/AddWorkerRole.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/contextmenu/CommonHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/contextmenu/CommonHandler.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/contextmenu/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/contextmenu/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/contextmenu/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/contextmenu/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/decorator/LightWeightDecorator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/decorator/LightWeightDecorator.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/decorator/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/decorator/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/decorator/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/decorator/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/preference/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/preference/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/preference/StorageAccountDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/preference/StorageAccountDialog.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/preference/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/preference/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/projwizard/ContextMenuHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/projwizard/ContextMenuHandler.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/projwizard/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/projwizard/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/projwizard/WAApplicationDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/projwizard/WAApplicationDialog.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/projwizard/WAKeyFeaturesPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/projwizard/WAKeyFeaturesPage.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/projwizard/WAProjectWizard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/projwizard/WAProjectWizard.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/projwizard/WAProjectWizardPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/projwizard/WAProjectWizardPage.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/projwizard/WATabPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/projwizard/WATabPage.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/projwizard/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/projwizard/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/propertypage/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/propertypage/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/propertypage/WAProjectNature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/propertypage/WAProjectNature.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/propertypage/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/propertypage/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/toolbar/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/toolbar/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/toolbar/WABuildCloud.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/toolbar/WABuildCloud.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/toolbar/WANewCertificate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/toolbar/WANewCertificate.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/toolbar/WANewProject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/toolbar/WANewProject.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/toolbar/WAResetEmulator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/toolbar/WAResetEmulator.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/toolbar/WARunEmulator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/toolbar/WARunEmulator.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/toolbar/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/ui/toolbar/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/AcceptLicenseAgreementDlg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/AcceptLicenseAgreementDlg.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/AppCmpntParam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/AppCmpntParam.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/JdkSrvConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/JdkSrvConfig.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/JdkSrvConfigListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/JdkSrvConfigListener.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/MessageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/MessageUtil.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/ParseXML.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/ParseXML.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/ProjectNatureHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/ProjectNatureHelper.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/SDKInstallationDlg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/SDKInstallationDlg.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/WAEclipseHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/WAEclipseHelper.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/WAPropertyTester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/WAPropertyTester.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/WAResourceChangeListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/WAResourceChangeListener.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/WAStartUp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/WAStartUp.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/util/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/CacheDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/CacheDialog.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/CertificateDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/CertificateDialog.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/ImportExportDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/ImportExportDialog.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/SimplePfxPwdDlg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/SimplePfxPwdDlg.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WAEndpointDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WAEndpointDialog.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WAEnvVarDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WAEnvVarDialog.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WARCaching.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WARCaching.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WARCertificates.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WARCertificates.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WARComponents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WARComponents.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WARDebugging.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WARDebugging.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WAREndpoints.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WAREndpoints.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WAREnvVars.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WAREnvVars.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WARGeneral.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WARGeneral.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WARLoadBalance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WARLoadBalance.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WARLocalStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WARLocalStorage.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WARoles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WARoles.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WASSLOffloading.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/WASSLOffloading.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/com/persistent/winazureroles/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/waeclipseplugin/Activator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/waeclipseplugin/Activator.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/waeclipseplugin/Messages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/waeclipseplugin/Messages.java -------------------------------------------------------------------------------- /PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/waeclipseplugin/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/com.persistent.winazure.eclipseplugin/src/waeclipseplugin/messages.properties -------------------------------------------------------------------------------- /PluginsAndFeatures/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/PluginsAndFeatures/pom.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/README.md -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/.classpath -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/.externalToolBuilders/JarBuilder.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/.externalToolBuilders/JarBuilder.launch -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/.gitignore -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/.project -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/build.properties -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/build.xml -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/readme.txt -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/resources/sdk.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/resources/sdk.properties -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/resources/sdkKit/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/resources/sdkKit/readme.txt -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/CreateHostedService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/CreateHostedService.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/CreateStorageServiceInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/CreateStorageServiceInput.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/InstanceStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/InstanceStatus.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/KeyName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/KeyName.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/ModelFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/ModelFactory.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/Notifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/Notifier.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/StorageService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/StorageService.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/StorageServices.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/StorageServices.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/Subscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/model/Subscription.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/rest/HttpVerb.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/rest/HttpVerb.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/rest/MediaType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/rest/MediaType.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/rest/MultipartUploadParameters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/rest/MultipartUploadParameters.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/rest/MultipartUploadRetryPolicy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/rest/MultipartUploadRetryPolicy.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/rest/SubscriptionTransformer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/rest/SubscriptionTransformer.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/rest/WindowsAzureRestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/rest/WindowsAzureRestUtils.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/rest/WindowsAzureService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/rest/WindowsAzureService.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/rest/WindowsAzureServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/rest/WindowsAzureServiceImpl.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/task/LoadStorageServiceTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/task/LoadStorageServiceTask.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/util/Base64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/azuremanagementutil/util/Base64.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/AutoUpldCmpnts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/AutoUpldCmpnts.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/AzurePublish.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/AzurePublish.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/AzureUnPublish.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/AzureUnPublish.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/BlobOperations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/BlobOperations.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/CloudUpload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/CloudUpload.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/Component.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/Component.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/DeployMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/DeployMethod.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/ErrorType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/ErrorType.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/ImportMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/ImportMethod.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/PackageType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/PackageType.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/ProgressBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/ProgressBar.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/StartupEnv.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/StartupEnv.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/UseCTPFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/UseCTPFormat.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/Utils.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/WindowsAzureManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/WindowsAzureManager.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/WindowsAzurePackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/WindowsAzurePackage.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/WorkerRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/WorkerRole.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/XMLUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/build/XMLUtil.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/BinaryPackageCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/BinaryPackageCreator.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/Configuration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/Configuration.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/PackageCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/PackageCreator.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/Utils.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/ContentType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/ContentType.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/ContentTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/ContentTypes.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/FileWithHash.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/FileWithHash.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/FilesWithHash.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/FilesWithHash.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/Relationship.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/Relationship.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/RequiredFeature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/RequiredFeature.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/RoleWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/RoleWrapper.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/RuntimeModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/RuntimeModel.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/SupportData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/SupportData.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/SupportedOS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/com/microsoftopentechnologies/windowsazure/tools/cspack/domain/SupportedOS.java -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/templates/LocalContent/Roles/RoleModel.xml.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/templates/LocalContent/Roles/RoleModel.xml.hbs -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/templates/LocalContent/Roles/RuntimeSetup.Manifest.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/templates/LocalContent/Roles/RuntimeSetup.Manifest.hbs -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/templates/LocalContent/Roles/__entrypoint.txt.hbs: -------------------------------------------------------------------------------- 1 | {{assemblyName}} -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/templates/NamedStreams/RequiredFeatures/1.0.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/templates/NamedStreams/RequiredFeatures/1.0.hbs -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/templates/NamedStreams/SupportData/1.0.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/templates/NamedStreams/SupportData/1.0.hbs -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/templates/NamedStreams/SupportedOsFamilies/1.0.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/templates/NamedStreams/SupportedOsFamilies/1.0.hbs -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/templates/ServiceDefinition/ServiceDefinition.csdef.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/templates/ServiceDefinition/ServiceDefinition.csdef.hbs -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/templates/ServiceDefinition/ServiceDefinition.rd.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/templates/ServiceDefinition/ServiceDefinition.rd.hbs -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/templates/ServiceDefinition/servicedefinition.rdsc.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/templates/ServiceDefinition/servicedefinition.rdsc.hbs -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/templates/[Content_Types].xml.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/templates/[Content_Types].xml.hbs -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/templates/[Content_Types]_binary.xml.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/templates/[Content_Types]_binary.xml.hbs -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/templates/_rels/.rels.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/templates/_rels/.rels.hbs -------------------------------------------------------------------------------- /StarterKit/CSPackAntTask/src/templates/csman.csman.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/CSPackAntTask/src/templates/csman.csman.hbs -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.cspack.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/.cspack.jar -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.externalToolBuilders/WindowsAzureProjectBuilder.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/.externalToolBuilders/WindowsAzureProjectBuilder.launch -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/.project -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.rolePropertiesOS3: -------------------------------------------------------------------------------- 1 | TargetFrameWorkVersion=v4.0 2 | -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.templates/cloudTools/buildAndPublish.cmd: -------------------------------------------------------------------------------- 1 | ant -f %~dp0..\package.xml publish -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.templates/cloudTools/buildAndPublish.sh: -------------------------------------------------------------------------------- 1 | ant -f ../package.xml publish -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.templates/cloudTools/publish.cmd: -------------------------------------------------------------------------------- 1 | ant -f %~dp0..\package.xml publishonly -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.templates/cloudTools/publish.sh: -------------------------------------------------------------------------------- 1 | ant -f ../package.xml publishonly -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.templates/cloudTools/unpublish.cmd: -------------------------------------------------------------------------------- 1 | ant -f %~dp0..\package.xml unpublish -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.templates/cloudTools/unpublish.sh: -------------------------------------------------------------------------------- 1 | ant -f ../package.xml unpublish -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.templates/devPortal/WindowsAzurePortal.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/.templates/devPortal/WindowsAzurePortal.url -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.templates/emulatorTools/.WaitForReset.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/.templates/emulatorTools/.WaitForReset.cmd -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.templates/emulatorTools/.elevate.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/.templates/emulatorTools/.elevate.vbs -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.templates/emulatorTools/.whileproc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/.templates/emulatorTools/.whileproc.cmd -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.templates/emulatorTools/ResetEmulator.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/.templates/emulatorTools/ResetEmulator.cmd -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.templates/emulatorTools/RunInEmulator.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/.templates/emulatorTools/RunInEmulator.cmd -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/.templates/startup/.startup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/.templates/startup/.startup.cmd -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/ServiceConfiguration.cscfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/ServiceConfiguration.cscfg -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/ServiceDefinition.csdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/ServiceDefinition.csdef -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/HelloWorld.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/HelloWorld.war -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/change.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/change.cmd -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/run.cmd -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/startup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/startup.cmd -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/util/.start.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/util/.start.cmd -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/util/.wash.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/util/.wash.ps1 -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/util/download.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/util/download.vbs -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/util/powershell.exe.activation_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/util/powershell.exe.activation_config -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/util/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/util/readme.txt -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/util/unzip.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/util/unzip.vbs -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/util/wash.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/util/wash.cmd -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/util/whileproc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/WorkerRole1/approot/util/whileproc.cmd -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/cert/SampleRemoteAccessPrivate.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/cert/SampleRemoteAccessPrivate.pfx -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/cert/SampleRemoteAccessPublic.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/cert/SampleRemoteAccessPublic.cer -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/deploy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/deploy/.gitignore -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/lib/antlr-runtime-4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/lib/antlr-runtime-4.0.jar -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/lib/handlebars-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/lib/handlebars-1.0.0.jar -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/lib/js.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/lib/js.jar -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/lib/slf4j-api-1.7.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/lib/slf4j-api-1.7.12.jar -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/lib/slf4j-simple-1.7.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/lib/slf4j-simple-1.7.12.jar -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/lib/thirdpartynotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/lib/thirdpartynotices.txt -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/package.xml -------------------------------------------------------------------------------- /StarterKit/WindowsAzureDeploymentProject/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/StarterKit/WindowsAzureDeploymentProject/readme.txt -------------------------------------------------------------------------------- /Utils/ACSFilter/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/.classpath -------------------------------------------------------------------------------- /Utils/ACSFilter/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/.project -------------------------------------------------------------------------------- /Utils/ACSFilter/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Utils/ACSFilter/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/build.xml -------------------------------------------------------------------------------- /Utils/ACSFilter/docs/Steps for configuring the ACS Java Filter.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/docs/Steps for configuring the ACS Java Filter.docx -------------------------------------------------------------------------------- /Utils/ACSFilter/docs/WindowsAzure-ACS-JavaLibrary-v1.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/docs/WindowsAzure-ACS-JavaLibrary-v1.doc -------------------------------------------------------------------------------- /Utils/ACSFilter/ext/servlet-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/ext/servlet-api.jar -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/federation/ACSFederationAuthFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/federation/ACSFederationAuthFilter.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/federation/HttpServletRequestDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/federation/HttpServletRequestDetails.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/federation/StatelessFilterCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/federation/StatelessFilterCommand.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/saml/AssertionNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/saml/AssertionNotFoundException.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/saml/InvalidAssertionException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/saml/InvalidAssertionException.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/saml/SAML11Assertion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/saml/SAML11Assertion.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/saml/SAML20Assertion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/saml/SAML20Assertion.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/saml/SAMLAssertion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/saml/SAMLAssertion.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/util/Base64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/util/Base64.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/util/DeflaterUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/util/DeflaterUtils.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/util/NamespaceContextImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/util/NamespaceContextImpl.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/util/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/util/Utils.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/xmldsig/CustomIdentifiedElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/xmldsig/CustomIdentifiedElement.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/xmldsig/SignatureValidationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/xmldsig/SignatureValidationException.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/xmldsig/SignatureValidationResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/xmldsig/SignatureValidationResult.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/xmldsig/SignatureValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/xmldsig/SignatureValidator.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/xmldsig/TrustParameters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/xmldsig/TrustParameters.java -------------------------------------------------------------------------------- /Utils/ACSFilter/src/com/microsoftopentechnologies/acs/xmldsig/UntrustedCertificateException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ACSFilter/src/com/microsoftopentechnologies/acs/xmldsig/UntrustedCertificateException.java -------------------------------------------------------------------------------- /Utils/ARRConfigurationAgent/ARRAgent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ARRConfigurationAgent/ARRAgent.sln -------------------------------------------------------------------------------- /Utils/ARRConfigurationAgent/ARRAgent.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ARRConfigurationAgent/ARRAgent.suo -------------------------------------------------------------------------------- /Utils/ARRConfigurationAgent/ARRAgent.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ARRConfigurationAgent/ARRAgent.v12.suo -------------------------------------------------------------------------------- /Utils/ARRConfigurationAgent/ARRConfigurationAgent/ARRAgent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ARRConfigurationAgent/ARRConfigurationAgent/ARRAgent.csproj -------------------------------------------------------------------------------- /Utils/ARRConfigurationAgent/ARRConfigurationAgent/ArrWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ARRConfigurationAgent/ARRConfigurationAgent/ArrWorker.cs -------------------------------------------------------------------------------- /Utils/ARRConfigurationAgent/ARRConfigurationAgent/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ARRConfigurationAgent/ARRConfigurationAgent/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Utils/ARRConfigurationAgent/ARRConfigurationAgent/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ARRConfigurationAgent/ARRConfigurationAgent/Program.cs -------------------------------------------------------------------------------- /Utils/ARRConfigurationAgent/ARRConfigurationAgent/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ARRConfigurationAgent/ARRConfigurationAgent/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Utils/ARRConfigurationAgent/ARRConfigurationAgent/SessionAffinityAgent.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ARRConfigurationAgent/ARRConfigurationAgent/SessionAffinityAgent.csproj.vspscc -------------------------------------------------------------------------------- /Utils/ARRConfigurationAgent/ARRConfigurationAgent/SynchManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ARRConfigurationAgent/ARRConfigurationAgent/SynchManager.cs -------------------------------------------------------------------------------- /Utils/ARRConfigurationAgent/ARRConfigurationAgent/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ARRConfigurationAgent/ARRConfigurationAgent/app.config -------------------------------------------------------------------------------- /Utils/ARRConfigurationAgent/SessionAffinityAgent.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ARRConfigurationAgent/SessionAffinityAgent.suo -------------------------------------------------------------------------------- /Utils/ARRConfigurationAgent/SessionAffinityAgent.vssscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ARRConfigurationAgent/SessionAffinityAgent.vssscc -------------------------------------------------------------------------------- /Utils/AzureCommons/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/.classpath -------------------------------------------------------------------------------- /Utils/AzureCommons/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/.project -------------------------------------------------------------------------------- /Utils/AzureCommons/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Utils/AzureCommons/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/build.properties -------------------------------------------------------------------------------- /Utils/AzureCommons/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/build.xml -------------------------------------------------------------------------------- /Utils/AzureCommons/resources/.cspack.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/resources/.cspack.jar -------------------------------------------------------------------------------- /Utils/AzureCommons/resources/ProjectManagerLibrary.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/resources/ProjectManagerLibrary.jar -------------------------------------------------------------------------------- /Utils/AzureCommons/resources/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/resources/readme.txt -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoft/applicationinsights/preference/ApplicationInsightsPageTableElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoft/applicationinsights/preference/ApplicationInsightsPageTableElement.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoft/applicationinsights/preference/ApplicationInsightsPageTableElements.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoft/applicationinsights/preference/ApplicationInsightsPageTableElements.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoft/applicationinsights/preference/ApplicationInsightsResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoft/applicationinsights/preference/ApplicationInsightsResource.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoft/applicationinsights/preference/ApplicationInsightsResourceRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoft/applicationinsights/preference/ApplicationInsightsResourceRegistry.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoft/applicationinsights/preference/ApplicationInsightsResourceWithSameName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoft/applicationinsights/preference/ApplicationInsightsResourceWithSameName.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/builder/WAExportJar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/builder/WAExportJar.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/DeploymentEventArgs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/DeploymentEventArgs.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/DeploymentEventListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/DeploymentEventListener.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/DeploymentManagerUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/DeploymentManagerUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/RequestStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/RequestStatus.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/UploadProgressEventArgs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/UploadProgressEventArgs.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/UploadProgressEventListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/UploadProgressEventListener.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/model/AutoUpldCmpnts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/model/AutoUpldCmpnts.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/model/CertificateUpload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/model/CertificateUpload.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/model/CertificateUploadList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/model/CertificateUploadList.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/model/DeployDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/model/DeployDescriptor.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/model/Header.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/model/Header.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/model/RemoteDesktopDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/model/RemoteDesktopDescriptor.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/model/Response.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/model/Response.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/model/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/model/package-info.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/tasks/AccountCachingExceptionEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/tasks/AccountCachingExceptionEvent.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/tasks/LoadingAccoutListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/tasks/LoadingAccoutListener.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/tasks/LoadingHostedServicesTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/tasks/LoadingHostedServicesTask.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/tasks/LoadingLocationsTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/tasks/LoadingLocationsTask.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/tasks/LoadingStorageAccountTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/tasks/LoadingStorageAccountTask.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/tasks/LoadingSubscriptionTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/tasks/LoadingSubscriptionTask.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/tasks/LoadingTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/tasks/LoadingTask.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/tasks/LoadingTaskRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/tasks/LoadingTaskRunner.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/util/MethodUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/util/MethodUtils.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/util/PublishData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/util/PublishData.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/util/PublishProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/util/PublishProfile.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/util/UIUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/util/UIUtils.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/wizard/ConfigurationEventArgs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/wizard/ConfigurationEventArgs.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/wizard/ConfigurationEventListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/wizard/ConfigurationEventListener.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/wizard/DeployWizardUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/deploy/wizard/DeployWizardUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/exception/AzureCommonsException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/exception/AzureCommonsException.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/exception/DeploymentException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/exception/DeploymentException.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/exception/RestAPIException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/exception/RestAPIException.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/messagehandler/PropUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/messagehandler/PropUtil.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/messagehandler/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/messagehandler/messages.properties -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/model/RoleAndEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/model/RoleAndEndpoint.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/preference/PreferenceUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/preference/PreferenceUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/preference/StorageAccPrefPageTableElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/preference/StorageAccPrefPageTableElement.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/propertypage/Azure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/propertypage/Azure.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/propertypage/RemoteAccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/propertypage/RemoteAccess.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/CacheDialogUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/CacheDialogUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/JdkSrvConfigUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/JdkSrvConfigUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WAEnvVarDialogUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WAEnvVarDialogUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WARCachingUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WARCachingUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WARCertificatesUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WARCertificatesUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WARDebuggingUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WARDebuggingUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WAREndpointsUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WAREndpointsUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WARLoadBalanceUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WARLoadBalanceUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WARLocalStorageUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WARLocalStorageUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WAResetEmulator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WAResetEmulator.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WASSLOffloadingUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WASSLOffloadingUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WAServerConfUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WAServerConfUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WizardUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/roleoperations/WizardUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/startup/WAStartUpUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/startup/WAStartUpUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/storageregistry/DuplicateAccounts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/storageregistry/DuplicateAccounts.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/storageregistry/StorageAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/storageregistry/StorageAccount.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/storageregistry/StorageAccountRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/storageregistry/StorageAccountRegistry.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/util/WAEclipseHelperMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/util/WAEclipseHelperMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/wacommonutil/CerPfxUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/wacommonutil/CerPfxUtil.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/wacommonutil/EncUtilHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/wacommonutil/EncUtilHelper.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/wacommonutil/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/wacommonutil/FileUtil.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/wacommonutil/PreferenceSetUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/wacommonutil/PreferenceSetUtil.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/wacommonutil/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/wacommonutil/Utils.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/xmlhandling/DataOperations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/xmlhandling/DataOperations.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/xmlhandling/ParseXMLUtilMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/azurecommons/xmlhandling/ParseXMLUtilMethods.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/deploy/util/PublishData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/deploy/util/PublishData.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/deploy/util/PublishProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/deploy/util/PublishProfile.java -------------------------------------------------------------------------------- /Utils/AzureCommons/src/com/microsoftopentechnologies/model/Subscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/AzureCommons/src/com/microsoftopentechnologies/model/Subscription.java -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil.sln -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil.suo -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil/Arguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil/Arguments.cs -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil/Assertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil/Assertion.cs -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil/CertificateNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil/CertificateNotFoundException.cs -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil/Command.cs -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil/CommandFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil/CommandFactory.cs -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil/ICommand.cs -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil/InstallCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil/InstallCommand.cs -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil/InvalidAccessKeyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil/InvalidAccessKeyException.cs -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil/InvalidRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil/InvalidRequestException.cs -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil/Program.cs -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil/RequestTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil/RequestTarget.cs -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil/RestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil/RestCommand.cs -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil/UnKnownCommandException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil/UnKnownCommandException.cs -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil/app.config -------------------------------------------------------------------------------- /Utils/GSRestUtil/restutil/restutil.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/GSRestUtil/restutil/restutil.csproj -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/.classpath -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/.gitignore -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/.project -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/build.xml -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/extlib/commons-lang3-3.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/extlib/commons-lang3-3.3.2.jar -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/extlib/jettison-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/extlib/jettison-1.1.jar -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/extlib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/extlib/readme.txt -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/arrconfig/ARRAgent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/arrconfig/ARRAgent.exe -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/arrconfig/ARRAgent.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/arrconfig/ARRAgent.exe.config -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/arrconfig/ConfigureARR.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/arrconfig/ConfigureARR.cmd -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/DeploymentSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/DeploymentSlot.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/JSONHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/JSONHelper.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/OSFamilyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/OSFamilyType.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/ParserXMLUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/ParserXMLUtility.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WARoleComponentCloudUploadMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WARoleComponentCloudUploadMode.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureCacheExpirationPolicy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureCacheExpirationPolicy.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureCertificate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureCertificate.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureConstants.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureEndpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureEndpoint.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureEndpointType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureEndpointType.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureLocalStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureLocalStorage.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureNamedCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureNamedCache.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzurePackageType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzurePackageType.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureProjectManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureProjectManager.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureRole.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureRoleComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureRoleComponent.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureRoleComponentCloudMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureRoleComponentCloudMethod.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureRoleComponentDeployMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureRoleComponentDeployMethod.java -------------------------------------------------------------------------------- /Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureRoleComponentImportMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/ProjectManagerLibrary/src/com/interopbridges/tools/windowsazure/WindowsAzureRoleComponentImportMethod.java -------------------------------------------------------------------------------- /Utils/encutil/encrypt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/encutil/encrypt.sln -------------------------------------------------------------------------------- /Utils/encutil/encrypt.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/encutil/encrypt.v12.suo -------------------------------------------------------------------------------- /Utils/encutil/encrypt.vssscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/encutil/encrypt.vssscc -------------------------------------------------------------------------------- /Utils/encutil/encrypt/CertUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/encutil/encrypt/CertUtil.cs -------------------------------------------------------------------------------- /Utils/encutil/encrypt/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/encutil/encrypt/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Utils/encutil/encrypt/Operation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/encutil/encrypt/Operation.cs -------------------------------------------------------------------------------- /Utils/encutil/encrypt/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/encutil/encrypt/Option.cs -------------------------------------------------------------------------------- /Utils/encutil/encrypt/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/encutil/encrypt/Program.cs -------------------------------------------------------------------------------- /Utils/encutil/encrypt/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/encutil/encrypt/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Utils/encutil/encrypt/encrypt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/encutil/encrypt/encrypt.csproj -------------------------------------------------------------------------------- /Utils/encutil/encrypt/encrypt.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAzureToolkitForEclipseWithJava/HEAD/Utils/encutil/encrypt/encrypt.csproj.vspscc --------------------------------------------------------------------------------