- Timestamp:
- 04/28/20 12:56:50 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/geniusweb/profilesserver/ProfilesFactory.java
r1 r12 1 1 package geniusweb.profilesserver; 2 2 3 import java.io.IOException; 3 4 import java.util.List; 4 5 … … 40 41 List<Profile> getProfiles(String domainname); 41 42 43 /** 44 * Permanently (over)write a profile to the repository (not just in memory). 45 * 46 * @param profile the profile to be written. The domain file must exist and 47 * match. 48 * @throws IOException if the profile does not meet the requirements. 49 */ 50 void putProfile(Profile profile) throws IOException; 51 42 52 }
Note:
See TracChangeset
for help on using the changeset viewer.