Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Passage/feature/add support attach for mail client #21

Merged
merged 29 commits into from
Nov 3, 2019
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
de9e373
Bug 550956 - [Passage] Support mail attachment
serjiokov Oct 4, 2019
59637aa
Bug 550956 - [Passage] Support mail attachment
serjiokov Oct 4, 2019
109c7e7
Bug 550956 - [Passage] Support mail attachment
serjiokov Oct 4, 2019
aa6d6bd
Bug 550956 - [Passage] Support mail attachment
serjiokov Oct 4, 2019
ff22f97
Bug 550956 - [Passage] Support mail attachment
serjiokov Oct 4, 2019
ad579d0
Bug 550956 - [Passage] Support mail attachment
serjiokov Oct 4, 2019
1339aa2
Bug 550956 - [Passage] Support mail attachment
serjiokov Oct 4, 2019
7a280ff
Bug 550956 - [Passage] Support mail attachment
serjiokov Oct 4, 2019
a35ce28
Bug 550956 - [Passage] Support mail attachment
serjiokov Oct 4, 2019
8686b23
Bug 550956 - [Passage] Support mail attachment
serjiokov Oct 4, 2019
f8519f4
Bug 550956 - [Passage] Support mail attachment
serjiokov Oct 4, 2019
a3ce59a
Bug 550956 - [Passage] Support mail attachment
serjiokov Oct 6, 2019
4050bf0
Bug 550956 - [Passage] Support mail attachment …
serjiokov Oct 11, 2019
6f1713c
Bug 550956 - [Passage] Support mail attachment …
serjiokov Oct 13, 2019
aa3a8c5
Bug 550956 - [Passage] Support mail attachment …
serjiokov Oct 14, 2019
d46e507
Bug 550956 - [Passage] Support mail attachment
ruspl-afed Oct 21, 2019
32e492f
Bug 550956 - [Passage] Support mail attachment
ruspl-afed Oct 21, 2019
51ac48e
Bug 550956 - [Passage] Support mail attachment
ruspl-afed Oct 21, 2019
4c29a6e
Bug 550956 - [Passage] Support mail attachment
ruspl-afed Oct 21, 2019
4e8cb45
Bug 550956 - [Passage] Support mail attachment
ruspl-afed Oct 21, 2019
1d05ee7
Bug 550956 - [Passage] Support mail attachment
ruspl-afed Nov 2, 2019
28e383c
Bug 550956 - [Passage] Support mail attachment
ruspl-afed Nov 2, 2019
f678a5a
Bug 550956 - [Passage] Support mail attachment
ruspl-afed Nov 3, 2019
057ea4c
Bug 550956 - [Passage] Support mail attachment
ruspl-afed Nov 3, 2019
2320306
Bug 550956 - [Passage] Support mail attachment
ruspl-afed Nov 3, 2019
472b4cb
Bug 550956 - [Passage] Support mail attachment
ruspl-afed Nov 3, 2019
81ff675
Bug 550956 - [Passage] Support mail attachment
ruspl-afed Nov 3, 2019
66aca83
Bug 550956 - [Passage] Support mail attachment
ruspl-afed Nov 3, 2019
9394532
Bug 550956 - [Passage] Support mail attachment
ruspl-afed Nov 3, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bug 550956 - [Passage] Support mail attachment
Added Mail faced

Signed-off-by: Sergei Kovalchuk <[email protected]>
serjiokov committed Oct 4, 2019
commit 109c7e74e549245a083453bab42b3617f81991a3
3 changes: 2 additions & 1 deletion bundles/org.eclipse.passage.lic.net/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -12,6 +12,7 @@ Require-Bundle: org.eclipse.osgi;bundle-version="0.0.0",
org.eclipse.passage.lic.equinox;bundle-version="0.0.0"
Export-Package: org.eclipse.passage.lic.internal.net;x-internal:=true,
org.eclipse.passage.lic.net,
org.eclipse.passage.lic.net.mail
org.eclipse.passage.lic.net.mail,
org.eclipse.passage.lic.net.mail.api
Bundle-ActivationPolicy: lazy
Service-Component: OSGI-INF/*.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*******************************************************************************
* Copyright (c) 2019 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* ArSysOp - initial API and implementation
*******************************************************************************/
package org.eclipse.passage.lic.net.mail.api;

import org.eclipse.passage.lic.equinox.LicensingEquinox;
import org.eclipse.passage.lic.net.mail.LicensingMail;

/**
* @since 0.7
*/
public class LicensingMails {
ruspl-afed marked this conversation as resolved.
Show resolved Hide resolved

private LicensingMails() {
}

public static LicensingMail getLicensingEmlService() {
return LicensingEquinox.getLicensingService(LicensingMail.class);
}
}