001// --------------------------------------------------------------------------------
002// Copyright 2002-2025 Echo Three, LLC
003//
004// Licensed under the Apache License, Version 2.0 (the "License");
005// you may not use this file except in compliance with the License.
006// You may obtain a copy of the License at
007//
008//     http://www.apache.org/licenses/LICENSE-2.0
009//
010// Unless required by applicable law or agreed to in writing, software
011// distributed under the License is distributed on an "AS IS" BASIS,
012// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013// See the License for the specific language governing permissions and
014// limitations under the License.
015// --------------------------------------------------------------------------------
016
017package com.echothree.control.user.party.common.edit;
018
019import com.echothree.control.user.icon.common.spec.IconSpec;
020import com.echothree.control.user.party.common.spec.BirthdayFormatSpec;
021import com.echothree.control.user.party.common.spec.GenderSpec;
022import com.echothree.util.common.form.BaseEdit;
023
024public interface ProfileEdit
025        extends BaseEdit, IconSpec, GenderSpec, BirthdayFormatSpec {
026    
027    String getNickname();
028    void setNickname(String nickname);
029
030    String getPronunciation();
031    void setPronunciation(String pronunciation);
032
033    String getPronouns();
034    void setPronouns(String pronouns);
035
036    String getBirthday();
037    void setBirthday(String birthday);
038    
039    String getOccupation();
040    void setOccupation(String occupation);
041    
042    String getHobbies();
043    void setHobbies(String hobbies);
044    
045    String getLocation();
046    void setLocation(String location);
047    
048    String getBioMimeTypeName();
049    void setBioMimeTypeName(String bioMimeTypeName);
050    
051    String getBio();
052    void setBio(String bio);
053    
054    String getSignatureMimeTypeName();
055    void setSignatureMimeTypeName(String signatureMimeTypeName);
056    
057    String getSignature();
058    void setSignature(String signature);
059    
060}