BrightSide Workbench Full Report + Source Code
org.turro.contacts.stub.ProfileStubverb Class Reference
Inheritance diagram for org.turro.contacts.stub.ProfileStubverb:
Collaboration diagram for org.turro.contacts.stub.ProfileStubverb:

Public Member Functions

 ProfileStubverb (IProfile profile)
 
String getImage ()
 
void setImage (String image)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 29 of file ProfileStubverb.java.

Constructor & Destructor Documentation

◆ ProfileStubverb()

org.turro.contacts.stub.ProfileStubverb.ProfileStubverb ( IProfile  profile)

Definition at line 33 of file ProfileStubverb.java.

33  {
34  silentlyInitializeValues(profile, (k, v) -> {
35  if(k instanceof String sk) {
36  if(v != null && "image".equals(sk)) {
37  return ElephantContext.getServerUrl("http") + v;
38  }
39  }
40  return v;
41  });
42  }
Here is the call graph for this function:

Member Function Documentation

◆ getImage()

String org.turro.contacts.stub.ProfileStubverb.getImage ( )

Definition at line 44 of file ProfileStubverb.java.

44  {
45  return image;
46  }

◆ setImage()

void org.turro.contacts.stub.ProfileStubverb.setImage ( String  image)

Definition at line 48 of file ProfileStubverb.java.

48  {
49  this.image = image;
50  }

The documentation for this class was generated from the following file: