1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.maven.profiles;
20
21 import java.util.List;
22 import java.util.Map;
23 import java.util.Properties;
24
25 import org.apache.maven.model.Profile;
26 import org.apache.maven.profiles.activation.ProfileActivationException;
27
28
29
30
31 @Deprecated
32 public interface ProfileManager {
33
34 void addProfile(Profile profile);
35
36 void explicitlyActivate(String profileId);
37
38 void explicitlyActivate(List<String> profileIds);
39
40 void explicitlyDeactivate(String profileId);
41
42 void explicitlyDeactivate(List<String> profileIds);
43
44 List getActiveProfiles() throws ProfileActivationException;
45
46 void addProfiles(List<Profile> profiles);
47
48 Map getProfilesById();
49
50 List<String> getExplicitlyActivatedIds();
51
52 List<String> getExplicitlyDeactivatedIds();
53
54 List getIdsActivatedByDefault();
55
56 Properties getRequestProperties();
57 }