Ignore:
Timestamp:
04/28/20 12:56:50 (5 years ago)
Author:
bart
Message:

Release 1.4.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/geniusweb/profilesserver/ProfilesFactory.java

    r1 r12  
    11package geniusweb.profilesserver;
    22
     3import java.io.IOException;
    34import java.util.List;
    45
     
    4041        List<Profile> getProfiles(String domainname);
    4142
     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
    4252}
Note: See TracChangeset for help on using the changeset viewer.